-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathtsconfig.app.json
More file actions
19 lines (19 loc) · 823 Bytes
/
tsconfig.app.json
File metadata and controls
19 lines (19 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"extends": "./tsconfig.json",
"compilerOptions": {
"target": "es2020",
"baseUrl": ".",
"outDir": "../../dist/out-tsc",
"paths": {
"~/*": ["src/*"],
"@nativescript/angular": ["../../packages/angular/src/index.ts"],
"@nativescript/angular/*": ["../../packages/angular/src/*"],
"@nativescript/angular/testing": ["../../packages/angular/testing/src/index.ts"],
"@nativescript/angular/polyfills": ["../../packages/angular/polyfills/src/index.ts"],
"@nativescript/zone-js": ["../../packages/zone-js/dist/index.ts"],
"@nativescript/zone-js/*": ["../../packages/zone-js/*"]
}
},
"exclude": ["node_modules", "platforms", "./src/**/*.spec.ts"],
"files": ["./references.d.ts", "../../packages/angular/references.d.ts", "./src/main.ts", "./src/polyfills.ts"]
}