mirror of
https://github.com/Matysh/houseplan-card
synced 2026-07-31 08:28:31 +00:00
14 lines
374 B
JavaScript
Executable File
14 lines
374 B
JavaScript
Executable File
import typescript from '@rollup/plugin-typescript';
|
|
import resolve from '@rollup/plugin-node-resolve';
|
|
import terser from '@rollup/plugin-terser';
|
|
|
|
export default {
|
|
input: 'src/houseplan-card.ts',
|
|
output: {
|
|
file: 'dist/houseplan-card.js',
|
|
format: 'es',
|
|
sourcemap: false,
|
|
},
|
|
plugins: [resolve(), typescript(), terser({ format: { comments: false } })],
|
|
};
|