wip
This commit is contained in:
49
apps/api/tsconfig.json
Normal file
49
apps/api/tsconfig.json
Normal file
@@ -0,0 +1,49 @@
|
||||
{
|
||||
"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"]
|
||||
}
|
||||
Reference in New Issue
Block a user