0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-13 09:30:45 -05:00
server/project/tsconfig.json
Refringe 24dbcf2e20
Updates SWC & Moves to ESNext
Also removes some `.swcrc` options that are already the defaults.
2025-01-07 11:46:04 -05:00

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/**/*"]
}