mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 05:30:43 -05:00
- Adds support for `tsx` - Drops support for `ts-node`, `ts-node-dev`, and `tsconfig-paths` - Changed workspace debug configuration to use `tsx` in watch mode - Changed `npm run run:debug` command from using gulp to running `tsx` directly (not in watch mode) - Changed TypeScript settings for improved module handling - Changed TypeScript to be a development dependency Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
28 lines
617 B
JSON
28 lines
617 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": false,
|
|
"moduleDetection": "force",
|
|
"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/**/*"
|
|
]
|
|
}
|