aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/preact/config/rollup.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/preact/config/rollup.config.js')
-rw-r--r--thirdparty/preact/config/rollup.config.js23
1 files changed, 0 insertions, 23 deletions
diff --git a/thirdparty/preact/config/rollup.config.js b/thirdparty/preact/config/rollup.config.js
deleted file mode 100644
index 57f71e1e7..000000000
--- a/thirdparty/preact/config/rollup.config.js
+++ /dev/null
@@ -1,23 +0,0 @@
-import nodeResolve from 'rollup-plugin-node-resolve';
-import babel from 'rollup-plugin-babel';
-import memory from 'rollup-plugin-memory';
-
-export default {
- exports: 'named',
- useStrict: false,
- plugins: [
- memory({
- path: 'src/preact',
- contents: "export * from './preact';"
- }),
- nodeResolve({
- main: true
- }),
- babel({
- sourceMap: true,
- loose: 'all',
- blacklist: ['es6.tailCall'],
- exclude: 'node_modules/**'
- })
- ]
-};