aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorJoris2022-07-05 21:55:41 +0200
committerJoris2022-07-05 21:55:41 +0200
commitaccc3d9c67e004aa814d1592d97342d3a7766bb4 (patch)
tree3d50654383e0386f9dc22b8f0f586f928dd856d9 /tsconfig.json
parent2936f06576997bffe7903ea840df563a408efc21 (diff)
downloadmap-accc3d9c67e004aa814d1592d97342d3a7766bb4.tar.gz
map-accc3d9c67e004aa814d1592d97342d3a7766bb4.tar.bz2
map-accc3d9c67e004aa814d1592d97342d3a7766bb4.zip
WIP Rewrite in TS
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json13
1 files changed, 13 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..5cbbec5
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,13 @@
+{
+ "compilerOptions": {
+ "module": "amd",
+ "target": "ES2017",
+ "baseUrl": "src",
+ "noImplicitAny": true,
+ "strictNullChecks": true,
+ "removeComments": true,
+ "preserveConstEnums": true,
+ "outFile": "public/main.js"
+ },
+ "include": ["src/**/*"]
+}