0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-13 08:30:44 -05:00
server/project/tsconfig.json
TheSparta 00fbc813ac fix/profiler (!166)
- `run:profiler` now uses swc instead of tsc.
- Removed `tsconfig.test.json` as it was only being used for the profiler which is now using swc.
- simplified `tsconfig.json` and `tsconfig.typedef.json`, they both had `baseUrl` and `paths` set to the same values, so i just moved them to `tsconfig.base.json`

Reviewed-on: SPT-AKI/Server#166
Co-authored-by: TheSparta <thesparta@noreply.dev.sp-tarkov.com>
Co-committed-by: TheSparta <thesparta@noreply.dev.sp-tarkov.com>
2023-11-06 19:39:13 +00:00

18 lines
334 B
JSON

{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"resolveJsonModule": true,
"outDir": "obj",
"declaration": true
},
"include": [
"./src/**/*",
"./tests/**/*",
"./types/**/*",
"./user/mods/**/*"
],
"exclude": [
"./user/mods/**/*"
]
}