aboutsummaryrefslogtreecommitdiff
path: root/rollup.config.js
diff options
context:
space:
mode:
authorGeckoEidechse <gecko.eidechse+git@pm.me>2022-10-05 01:48:14 +0200
committerGeckoEidechse <gecko.eidechse+git@pm.me>2022-10-05 01:48:14 +0200
commit6ea68f0b8413cd29d2ad8750e7174b3cd1824065 (patch)
treea79796fb57443808da1bbb32c90b39930b05e0ae /rollup.config.js
parent936764d6b7e9ea3ce69cc59918c440fb775ad64e (diff)
downloadFlightCore-6ea68f0b8413cd29d2ad8750e7174b3cd1824065.tar.gz
FlightCore-6ea68f0b8413cd29d2ad8750e7174b3cd1824065.zip
chore: Remove unused code
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 } })
- ]
- }
-]
-