forked from omedym/etk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
38 lines (38 loc) · 1.1 KB
/
tsconfig.base.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"composite": false,
"declaration": false,
// "emitDecoratorMetadata": false,
// "esModuleInterop": false,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"incremental": true,
"inlineSourceMap": true,
"lib": ["ESNext"],
"module": "CommonJS",
"moduleResolution": "Node",
"noEmit": true,
"noEmitHelpers": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"resolveJsonModule": true,
"rootDir": ".",
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"sourceRoot": "/",
"strict": true,
"strictNullChecks": true,
"strictPropertyInitialization": false,
"target": "ESNext",
// "types": ["node"],
"baseUrl": ".",
"paths": {
"@omedym/nestjs-dmq-core": ["./packages/nestjs-dmq-core/src/index"],
"@omedym/nestjs-dmq-repository": ["./packages/nestjs-dmq-repository/src/index"],
"@omedym/nestjs-telemetry": ["./packages/nestjs-telemetry/src/index"],
}
// "compileOnSave": false,
}
}