aboutsummaryrefslogtreecommitdiff
path: root/frontend/ts/tsconfig.json
diff options
context:
space:
mode:
authorJoris2025-04-19 12:36:38 +0200
committerJoris2025-04-19 12:38:24 +0200
commit632eef6424d8dc8d40c2906177892697679e7b85 (patch)
tree48d9cd60e9e96eab810b5f7bb3c7b1fa79e0438f /frontend/ts/tsconfig.json
parent063d8ef9eaf874a941f4459e831057dd0a1b7ddd (diff)
Add ZIG server
Diffstat (limited to 'frontend/ts/tsconfig.json')
-rw-r--r--frontend/ts/tsconfig.json12
1 files changed, 12 insertions, 0 deletions
diff --git a/frontend/ts/tsconfig.json b/frontend/ts/tsconfig.json
new file mode 100644
index 0000000..6b2d2b0
--- /dev/null
+++ b/frontend/ts/tsconfig.json
@@ -0,0 +1,12 @@
+{
+ "compilerOptions": {
+ "module": "amd",
+ "target": "es2020",
+ "baseUrl": "src",
+ "outFile": "../../backend/public/main.js",
+ "noImplicitAny": true,
+ "strictNullChecks": true,
+ "removeComments": true,
+ "preserveConstEnums": true
+ }
+}