forget-cancellare-vecchi-toot/rollup.config.js

18 lines
394 B
JavaScript
Raw Permalink Normal View History

2017-08-31 18:59:09 +02:00
import svelte from 'rollup-plugin-svelte';
2019-05-02 00:47:44 +02:00
import node_resolve from 'rollup-plugin-node-resolve';
2017-08-31 18:59:09 +02:00
export default {
output: {
format: 'iife',
},
plugins: [
svelte({
2021-03-09 00:08:45 +01:00
extensions: ['.html'],
2017-08-31 18:59:09 +02:00
include: 'components/**/*.html',
2021-03-09 00:08:45 +01:00
compilerOptions: {hydratable: true},
emitCss: false,
2017-08-31 18:59:09 +02:00
}),
2019-05-02 00:47:44 +02:00
node_resolve(),
2017-08-31 18:59:09 +02:00
]
}