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

22 lines
581 B
JSON
Raw Normal View History

2023-03-03 15:23:46 +00:00
{
"compilerOptions": {
"strict": true,
"moduleDetection": "force",
"target": "ESNext",
"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/**/*", "./user/mods/**/*"]
}