diff options
author | HampusM <hampus@hampusmat.com> | 2021-06-07 20:54:26 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2021-06-07 20:54:26 +0200 |
commit | 86395bd219b770133cb80d4bda4efc9155a4eef8 (patch) | |
tree | c07461a5da2e7ae4e8e29d930b4fbb63d2f509d3 /packages/server/tsconfig.json | |
parent | 6a89b265146edf689b83e2f0bf2d3d6d70eb538a (diff) |
Refactored the backend. It's written in typescript now.
Diffstat (limited to 'packages/server/tsconfig.json')
-rw-r--r-- | packages/server/tsconfig.json | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/packages/server/tsconfig.json b/packages/server/tsconfig.json new file mode 100644 index 0000000..5dfdda7 --- /dev/null +++ b/packages/server/tsconfig.json @@ -0,0 +1,11 @@ +{ + "compilerOptions": { + "target": "es5", + "module": "commonjs", + "outDir": "dist", + "strict": false, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true + } +} |