matcher/tsconfig.json

27 lines
664 B
JSON
Raw Normal View History

2023-04-06 09:12:49 +00:00
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es2017",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
2023-08-25 13:16:33 +00:00
"strictNullChecks": true,
2023-08-25 14:01:19 +00:00
"noImplicitAny": true,
2023-04-06 09:12:49 +00:00
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
2023-08-16 10:28:20 +00:00
"noFallthroughCasesInSwitch": false,
"paths": {
"@libs/*": ["src/libs/*"],
"@modules/*": ["src/modules/*"],
"@src/*": ["src/*"]
}
2023-04-06 09:12:49 +00:00
}
}