Remnawave_Node/tsconfig.json

41 lines
No EOL
990 B
JSON

{
"compilerOptions": {
"module": "NodeNext",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "NodeNext",
"target": "ESNext",
"sourceMap": true,
"resolveJsonModule": true,
"outDir": "./dist",
"baseUrl": "./",
"paths": {
"@common/*": [
"./src/common/*"
],
"@libs/contracts/*": [
"./libs/contract/*"
],
"@xray-protos/*": [
"./src/xray-protos/*"
]
},
"typeRoots": [
"./@types"
],
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": true,
"strict": true,
"strictPropertyInitialization": false,
"noImplicitAny": true,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false,
"useDefineForClassFields": true,
}
}