mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 08:50: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>
12 lines
218 B
JSON
12 lines
218 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"emitDeclarationOnly": true,
|
|
"declaration": true,
|
|
"declarationDir": "./types"
|
|
},
|
|
"exclude": [
|
|
"./types/**/*"
|
|
]
|
|
}
|