34 lines
973 B
JSON
34 lines
973 B
JSON
![]() |
{
|
||
|
"compilerOptions": {
|
||
|
"module": "commonjs",
|
||
|
"declaration": true,
|
||
|
"removeComments": true,
|
||
|
"emitDecoratorMetadata": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"target": "ES2021",
|
||
|
"sourceMap": true,
|
||
|
"outDir": "./dist",
|
||
|
"baseUrl": "./",
|
||
|
"incremental": true,
|
||
|
"skipLibCheck": true,
|
||
|
"strictNullChecks": false,
|
||
|
"noImplicitAny": false,
|
||
|
"strictBindCallApply": false,
|
||
|
"forceConsistentCasingInFileNames": false,
|
||
|
"noFallthroughCasesInSwitch": false,
|
||
|
"resolveJsonModule": true,
|
||
|
"esModuleInterop": true,
|
||
|
"paths": {
|
||
|
"@/*": ["src/*"],
|
||
|
"@/vision/*": ["src/vision/*"],
|
||
|
"@/processors/*": ["src/processors/*"],
|
||
|
"@/storage/*": ["src/storage/*"],
|
||
|
"@/queue/*": ["src/queue/*"],
|
||
|
"@/config/*": ["src/config/*"],
|
||
|
"@/utils/*": ["src/utils/*"]
|
||
|
}
|
||
|
},
|
||
|
"include": ["src/**/*"],
|
||
|
"exclude": ["node_modules", "dist", "test", "**/*spec.ts"]
|
||
|
}
|