mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 09:30:45 -05:00
22 lines
561 B
JSON
22 lines
561 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"moduleDetection": "force",
|
|
"target": "ESNext",
|
|
"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/**/*"]
|
|
}
|