-
-
Notifications
You must be signed in to change notification settings - Fork 102
/
tsconfig.base.json
30 lines (30 loc) · 1004 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
28
29
30
{
"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", "es2020"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@nxext/capacitor": ["packages/capacitor/src/index.ts"],
"@nxext/common": ["packages/common/src/index.ts"],
"@nxext/e2e-utils": ["e2e/utils/index.ts"],
"@nxext/ionic-angular": ["packages/ionic-angular/src/index.ts"],
"@nxext/ionic-react": ["packages/ionic-react/src/index.ts"],
"@nxext/preact": ["packages/preact/src/index.ts"],
"@nxext/stencil": ["packages/stencil/src/index.ts"],
"@nxext/svelte": ["packages/svelte/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}