From b5aa73a3a53859899538111861e33d1fb2458422 Mon Sep 17 00:00:00 2001 From: Giovanni Condello Date: Wed, 7 Jun 2023 22:28:07 +0200 Subject: Add typescript support (#219) * Add typescript support * Make jekyll work on docker-compose on windows --- tsup.config.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 tsup.config.ts (limited to 'tsup.config.ts') 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' +}) -- cgit v1.2.3