diff options
Diffstat (limited to '')
-rw-r--r-- | tsup.config.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tsup.config.ts b/tsup.config.ts new file mode 100644 index 0000000..2412544 --- /dev/null +++ b/tsup.config.ts @@ -0,0 +1,9 @@ +import { defineConfig } from 'tsup' + +export default defineConfig({ + entry: ['assets/ts/'], + splitting: false, + sourcemap: true, + clean: true, + outDir: 'assets/js/generated' +}) |