diff options
author | HampusM <hampus@hampusmat.com> | 2022-05-31 00:02:58 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-05-31 00:02:58 +0200 |
commit | ea33f87e590dd6f010590ecfc5d5b07dcabe0c64 (patch) | |
tree | 44f8575239552cdfaadfbe87fb27d51e2c2c8dc9 /master/server/tsconfig.json | |
parent | 7afb8aedd6f3553aa0ec138373aea18068abd2f8 (diff) |
feat(master): add server package
Diffstat (limited to 'master/server/tsconfig.json')
-rw-r--r-- | master/server/tsconfig.json | 12 |
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 + } +} |