Files
advanced-camera-card/rollup.config.js
T
Ian Richardson 078499f029 lots of new changes
* HACS badge
* hacs.json
* New action handling with double tap support
* Cleanup
2019-10-30 12:44:59 -05:00

20 lines
416 B
JavaScript

import resolve from 'rollup-plugin-node-resolve';
import typescript from 'rollup-plugin-typescript2';
import babel from 'rollup-plugin-babel';
import { terser } from "rollup-plugin-terser";
export default {
input: ['src/boilerplate-card.ts'],
output: {
dir: './dist',
format: 'es',
},
plugins: [
resolve(),
typescript(),
babel({
exclude: 'node_modules/**'
}),
terser()]
};