-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
34 lines (34 loc) · 1018 Bytes
/
tsconfig.base.json
File metadata and controls
34 lines (34 loc) · 1018 Bytes
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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@rps/angular-nav-bars": ["packages/nav-bars/src/index.ts"],
"@rps/angular-nav-bars/nav-bar-1": [
"packages/nav-bars/src/lib/nav-bar-1/nav-bar1.component.ts"
],
"@rps/angular-nav-bars/nav-bar-2": [
"packages/nav-bars/src/lib/nav-bar-2/nav-bar2.component.ts"
],
"@rps/angular-nav-bars/nav-bar-3": [
"packages/nav-bars/src/lib/nav-bar-3/nav-bar3.component.ts"
],
"@rps/angular-nav-bars/nav-bar-4": [
"packages/nav-bars/src/lib/nav-bar-4/nav-bar4.component.ts"
]
}
},
"exclude": ["node_modules", "tmp"]
}