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({
|
|
|
|
include: 'components/**/*.html',
|
2018-10-06 00:57:25 +02:00
|
|
|
hydratable: true,
|
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
|
|
|
]
|
|
|
|
}
|