summaryrefslogtreecommitdiff
path: root/master/server/tsconfig.json
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-05-31 00:02:58 +0200
committerHampusM <hampus@hampusmat.com>2022-05-31 00:02:58 +0200
commitea33f87e590dd6f010590ecfc5d5b07dcabe0c64 (patch)
tree44f8575239552cdfaadfbe87fb27d51e2c2c8dc9 /master/server/tsconfig.json
parent7afb8aedd6f3553aa0ec138373aea18068abd2f8 (diff)
feat(master): add server package
Diffstat (limited to 'master/server/tsconfig.json')
-rw-r--r--master/server/tsconfig.json12
1 files changed, 12 insertions, 0 deletions
diff --git a/master/server/tsconfig.json b/master/server/tsconfig.json
new file mode 100644
index 0000000..2e98500
--- /dev/null
+++ b/master/server/tsconfig.json
@@ -0,0 +1,12 @@
+{
+ "compilerOptions": {
+ "baseUrl": "src",
+ "module": "CommonJS",
+ "target": "ES2020",
+ "strict": true,
+ "esModuleInterop": true,
+ "moduleResolution": "node",
+ "skipLibCheck": false,
+ "forceConsistentCasingInFileNames": true
+ }
+}