update rollup and web server (es dev no more maintained)

This commit is contained in:
JFH
2020-12-19 22:53:45 +01:00
parent 047e55c7be
commit d7898ff29c
327 changed files with 2536 additions and 5862 deletions

12
web-dev-server.config.mjs Normal file
View File

@@ -0,0 +1,12 @@
import {fromRollup} from "@web/dev-server-rollup";
import rollupCommonjs from "@rollup/plugin-commonjs";
const commonjs = fromRollup(rollupCommonjs);
export default {
plugins: [
commonjs({
exclude: ['src', 'dist', 'instrumented']
})
]
};