myfreight-assessment/tsconfig.json

37 lines
785 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2022",
"lib": [ "es2022"],
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": true,
"noImplicitAny": true,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false,
"strict": true,
"noUncheckedIndexedAccess": true,
"paths": {
"@/*": [
"./src/*"
],
"@tests/*": [
"./tests/*"
],
"@": [
"./src/main.ts"
]
}
}
}