generated from jonatanmartinbabel/ngx-single-spa
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
27 lines (27 loc) · 881 Bytes
/
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
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"single-spa-angular": ["libs/single-spa-angular/index.ts"],
"single-spa-angular/elements": ["libs/single-spa-angular/elements/src/index.ts"],
"single-spa-angular/internals": ["libs/single-spa-angular/internals/src/index.ts"],
"single-spa-angular/parcel": ["libs/single-spa-angular/parcel/src/index.ts"]
},
"target": "es2015",
"module": "esnext",
"lib": ["es2018", "dom"],
"moduleResolution": "node",
"typeRoots": ["node_modules/@types"],
"strict": true,
"sourceMap": true,
"declaration": true,
"noEmitOnError": true,
"importHelpers": true,
"downlevelIteration": true,
"noStrictGenericChecks": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"suppressImplicitAnyIndexErrors": true
},
"exclude": ["cypress"]
}