From 1ebc55c72a1a17293bbf4ad86e0177a10a794750 Mon Sep 17 00:00:00 2001 From: Joris Date: Sun, 17 Sep 2023 12:23:47 +0200 Subject: Make app packageable --- library/tsconfig.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 library/tsconfig.json (limited to 'library/tsconfig.json') diff --git a/library/tsconfig.json b/library/tsconfig.json new file mode 100644 index 0000000..1e07c37 --- /dev/null +++ b/library/tsconfig.json @@ -0,0 +1,13 @@ +{ + "compilerOptions": { + "module": "amd", + "target": "es2020", + "baseUrl": "client", + "outFile": "public/main.js", + "noImplicitAny": true, + "strictNullChecks": true, + "removeComments": true, + "preserveConstEnums": true + }, + "include": ["client/**/*"] +} -- cgit v1.2.3