-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
41 lines (41 loc) · 1.48 KB
/
tsconfig.base.json
File metadata and controls
41 lines (41 loc) · 1.48 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": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"typeRoots": ["node_modules/@types"],
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@iote/bricks": ["libs/external/iote/bricks/src/index.ts"],
"@iote/bricks-angular": [
"libs/external/iote/bricks-angular/src/index.ts"
],
"@iote/ui-workflows": ["libs/external/iote/ui-workflows/src/index.ts"],
"@ngfire/admin-data": ["libs/external/ngfire/admin-data/src/index.ts"],
"@iote/cqrs": ["libs/external/iote/cqrs/src/index.ts"],
"@iote/time": ["libs/external/iote/time/src/index.ts"],
"@iote/state": ["libs/external/iote/state/src/index.ts"],
"@ngfire/functions": ["libs/external/ngfire/functions/src/index.ts"],
"@ngfire/angular": ["libs/external/ngfire/angular/src/index.ts"],
"@ngfire/time": ["libs/external/ngfire/time/src/index.ts"],
"@ngfire/files": ["libs/external/ngfire/files/src/index.ts"],
"@ngfire/firestore-qbuilder": [
"libs/external/ngfire/firestore-qbuilder/src/index.ts"
],
"@ngfire/infinite-scroll": [
"libs/external/ngfire/infinite-scroll/src/index.ts"
]
}
},
"exclude": ["node_modules", "tmp"]
}