-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.base.json
61 lines (61 loc) · 2.17 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"strictPropertyInitialization": false,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@ngspot/common/*": ["packages/common/src/*"],
"@ngspot/expandable-input": [
"packages/expandable-input/package/src/index.ts"
],
"@ngspot/expandable-input-demo": [
"packages/expandable-input/demo/src/index.ts"
],
"@ngspot/ng-superclass": ["packages/ng-superclass/package/src/index.ts"],
"@ngspot/ng-superclass-demo": [
"packages/ng-superclass/demo/src/index.ts"
],
"@ngspot/ng-superclass-material": [
"packages/ng-superclass-material/package/src/index.ts"
],
"@ngspot/ng-superclass-material-demo": [
"packages/ng-superclass-material/demo/src/index.ts"
],
"@ngspot/ng-superclass/testing": [
"packages/ng-superclass/package/testing/src/index.ts"
],
"@ngspot/ngx-errors": ["packages/ngx-errors/package/src/index.ts"],
"@ngspot/ngx-errors-demo": ["packages/ngx-errors/demo/src/index.ts"],
"@ngspot/ngx-errors-material": [
"packages/ngx-errors-material/package/src/index.ts"
],
"@ngspot/ngx-errors-material-demo": [
"packages/ngx-errors-material/demo/src/index.ts"
],
"@ngspot/remote-data": ["packages/remote-data/src/index.ts"],
"@ngspot/remote-data-rx": ["packages/remote-data-rx/src/index.ts"],
"@ngspot/route-path-builder/package": [
"packages/route-path-builder/package/src/index.ts"
],
"@ngspot/rxjs": ["packages/rxjs/src/index.ts"],
"@ngspot/rxjs/decorators": ["packages/rxjs/decorators/index.ts"],
"@ngspot/rxjs/operators": ["packages/rxjs/operators/index.ts"],
"@ngspot/table-of-contents": [
"packages/table-of-contents/package/src/index.ts"
]
}
},
"exclude": ["node_modules", "tmp"]
}