mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 09:10:43 -05:00
- Changes to import typing for ILogger and ICloner - Targets es2022 in compilerOptions (Matching the target in .swcrc) because otherwise Biome doesn't seem to find a proper target. - Fixes up the seasonal event typing - fixes run:debug to target the correct file
29 lines
644 B
JSON
29 lines
644 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"moduleDetection": "force",
|
|
"target": "es2022",
|
|
"module": "Preserve",
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"verbatimModuleSyntax": false,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@spt/*": [
|
|
"./src/*"
|
|
],
|
|
"@tests/*": [
|
|
"./tests/*"
|
|
]
|
|
},
|
|
},
|
|
"include": [
|
|
"src/*",
|
|
"src/**/*"
|
|
]
|
|
}
|