generated from custom-cards/boilerplate-card
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathrollup.config.dev.js
More file actions
33 lines (32 loc) · 743 Bytes
/
rollup.config.dev.js
File metadata and controls
33 lines (32 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import typescript from 'rollup-plugin-typescript2';
import resolve from '@rollup/plugin-node-resolve';
import babel from '@rollup/plugin-babel';
import terser from '@rollup/plugin-terser';
import serve from 'rollup-plugin-serve';
import json from '@rollup/plugin-json';
export default {
input: ['src/main.ts'],
output: {
file: 'dist/energy-entity-row.js',
format: 'es',
},
plugins: [
resolve(),
typescript(),
json(),
babel({
exclude: 'node_modules/**',
babelHelpers: 'bundled',
}),
terser(),
serve({
contentBase: './dist',
host: '0.0.0.0',
port: 5000,
allowCrossOrigin: true,
headers: {
'Access-Control-Allow-Origin': '*',
},
}),
],
};