-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtsconfig.json
More file actions
50 lines (50 loc) · 1.93 KB
/
tsconfig.json
File metadata and controls
50 lines (50 loc) · 1.93 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"target": "es2020",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@nx-mfe/client/assets": ["libs/client/assets/src/index.ts"],
"@nx-mfe/client/auth": ["libs/client/auth/src/index.ts"],
"@nx-mfe/client/common": ["libs/client/common/src/index.ts"],
"@nx-mfe/client/core": ["libs/client/core/src/index.ts"],
"@nx-mfe/client/environment": ["libs/client/environment/src/index.ts"],
"@nx-mfe/client/forms": ["libs/client/forms/src/index.ts"],
"@nx-mfe/client/injector-container": ["libs/client/injector-container/src/index.ts"],
"@nx-mfe/client/mfe": ["libs/client/mfe/src/index.ts"],
"@nx-mfe/client/styles": ["libs/client/styles/src/index.ts"],
"@nx-mfe/client/ui": ["libs/client/ui/src/index.ts"],
"@nx-mfe/server/common": ["libs/server/common/src/index.ts"],
"@nx-mfe/server/domains": ["libs/server/domains/src/index.ts"],
"@nx-mfe/server/grpc": ["libs/server/grpc/src/index.ts"],
"@nx-mfe/shared/common": ["libs/shared/common/src/index.ts"],
"@nx-mfe/shared/data-access": ["libs/shared/data-access/src/index.ts"]
},
"downlevelIteration": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noImplicitOverride": true,
"noUnusedParameters": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": false,
"typeRoots": ["node_modules/@types"],
"types": ["node", "jest"]
},
"exclude": ["node_modules", "tmp"]
}