50 lines
1.4 KiB
JSON
50 lines
1.4 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"module": "commonjs",
|
|
"lib": ["es2022", "dom"],
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": false,
|
|
"noImplicitAny": false,
|
|
"noImplicitThis": false,
|
|
"strictNullChecks": false,
|
|
"alwaysStrict": false,
|
|
"exactOptionalPropertyTypes": false,
|
|
"noUncheckedIndexedAccess": false,
|
|
"assumeChangesOnlyAffectDirectDependencies": true,
|
|
"noEmit": false,
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"incremental": true,
|
|
"baseUrl": ".",
|
|
"types": ["node", "express", "jest"],
|
|
"strictPropertyInitialization": false,
|
|
"paths": {
|
|
"@gridpilot/shared/*": [
|
|
"../../packages/shared/*"
|
|
],
|
|
"@gridpilot/analytics/*": [
|
|
"../../packages/analytics/*"
|
|
],
|
|
"@gridpilot/analytics/domain/repositories/*": [
|
|
"../../packages/analytics/domain/repositories/*"
|
|
],
|
|
"@gridpilot/analytics/domain/entities/*": [
|
|
"../../packages/analytics/domain/entities/*"
|
|
],
|
|
"@nestjs/testing": [
|
|
"./node_modules/@nestjs/testing"
|
|
]
|
|
}
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "**/*.spec.ts", "**/*.mock.ts"]
|
|
}
|