0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-13 08:50:43 -05:00
server/project/tsconfig.json

29 lines
644 B
JSON
Raw Normal View History

2023-03-03 15:23:46 +00:00
{
"compilerOptions": {
"strict": true,
"moduleDetection": "force",
"target": "es2022",
"module": "Preserve",
2023-03-03 15:23:46 +00:00
"resolveJsonModule": true,
"allowJs": true,
"esModuleInterop": true,
"isolatedModules": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"verbatimModuleSyntax": false,
"baseUrl": ".",
"paths": {
"@spt/*": [
"./src/*"
],
"@tests/*": [
"./tests/*"
]
},
2023-03-03 15:23:46 +00:00
},
"include": [
"src/*",
"src/**/*"
]
}