-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathtsconfig.spec.json
More file actions
20 lines (20 loc) · 821 Bytes
/
tsconfig.spec.json
File metadata and controls
20 lines (20 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"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/*"]
}
},
"files": ["src/test.ts", "./references.d.ts", "../../packages/angular/references.d.ts"],
"exclude": ["node_modules", "platforms"],
"include": ["**/*.spec.ts", "**/*.d.ts"]
}