2022-12-13 12:39:06 +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,
|
|
|
|
"strictNullChecks": false,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"strictBindCallApply": false,
|
|
|
|
"forceConsistentCasingInFileNames": false,
|
2023-07-20 15:22:31 +00:00
|
|
|
"noFallthroughCasesInSwitch": false,
|
|
|
|
"paths": {
|
|
|
|
"@modules/*": ["src/modules/*"],
|
|
|
|
"@src/*": ["src/*"]
|
|
|
|
}
|
2022-12-13 12:39:06 +00:00
|
|
|
}
|
|
|
|
}
|