diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-12 09:39:41 +0100 |
|---|---|---|
| committer | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-12 09:41:58 +0100 |
| commit | 6549313a54e7fede18cfa170df82c29f511d76d7 (patch) | |
| tree | 2dc148824adfa08dd7b32cf2ca2179e6e3e23dfc /api/tsconfig.json | |
| parent | fae665188dfd2c333c6fbba43a8d3c776b285d27 (diff) | |
No more API build step
Diffstat (limited to 'api/tsconfig.json')
| -rw-r--r-- | api/tsconfig.json | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/api/tsconfig.json b/api/tsconfig.json new file mode 100644 index 0000000..84d8095 --- /dev/null +++ b/api/tsconfig.json @@ -0,0 +1,15 @@ +{ + "strict": true, + "compilerOptions": { + "target": "ES5", + "module": "CommonJS", + "sourceMap": true, + "moduleResolution": "node", + "esModuleInterop": true, + "baseUrl": ".", + "outDir": "../api", + "lib": ["ESNext", "DOM"] + }, + "include": ["."], + "exclude": ["./node_modules"] +} |
