00fbc813ac
- `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: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/166 Co-authored-by: TheSparta <thesparta@noreply.dev.sp-tarkov.com> Co-committed-by: TheSparta <thesparta@noreply.dev.sp-tarkov.com>
18 lines
334 B
JSON
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/**/*"
|
|
]
|
|
}
|