forked from nrwl/nx-console
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
41 lines (41 loc) · 1.28 KB
/
tsconfig.json
File metadata and controls
41 lines (41 loc) · 1.28 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
{
"compileOnSave": false,
"compilerOptions": {
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"strictNullChecks": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitAny": true,
"noImplicitThis": true,
"strictFunctionTypes": true,
"typeRoots": ["node_modules/@types"],
"downlevelIteration": true,
"lib": ["es2017", "dom", "esnext.asynciterable"],
"baseUrl": ".",
"paths": {
"@angular-console/*": ["libs/*"],
"@angular-console/feature-workspaces": [
"libs/feature-workspaces/src/index.ts"
],
"@angular-console/feature-extensions": [
"libs/feature-extensions/src/index.ts"
],
"@angular-console/feature-generate": [
"libs/feature-generate/src/index.ts"
],
"@angular-console/utils": ["libs/utils/src/index.ts"],
"@angular-console/feature-run": ["libs/feature-run/src/index.ts"],
"@angular-console/ui": ["libs/ui/src/index.ts"],
"schema/*": ["dist/schema/*"],
"@angular-console/schema": ["libs/schema/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}