aboutsummaryrefslogtreecommitdiff
path: root/rollup.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'rollup.config.js')
-rw-r--r--rollup.config.js28
1 files changed, 0 insertions, 28 deletions
diff --git a/rollup.config.js b/rollup.config.js
deleted file mode 100644
index 3cdaa211..00000000
--- a/rollup.config.js
+++ /dev/null
@@ -1,28 +0,0 @@
-import rollup_nre from '@rollup/plugin-node-resolve';
-import rollup_tsc from '@rollup/plugin-typescript';
-// import { terser } from 'rollup-plugin-terser';
-
-export default [
- {
- input: './src-ui/src/main.ts',
- output: {
- file: './dist/js/app-bundle.js',
- format: 'iife',
- name: 'bundle',
- sourcemap: true
- },
- plugins: [
- // rollup_cjs(),
- rollup_nre(),
- rollup_tsc({
- tsconfig: './src-ui/tsconfig.json',
- compilerOptions: {
- declaration: false,
- declarationDir: null
- }
- }),
- // terser({ compress: true, format: { comments: false } })
- ]
- }
-]
-