Skip to content

Commit 72e1d69

Browse files
committed
feat: typescript 6 prep
1 parent 6c118a3 commit 72e1d69

3 files changed

Lines changed: 8 additions & 11 deletions

File tree

apps/nativescript-demo-ng/tsconfig.app.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"target": "es2020",
5-
"baseUrl": ".",
65
"outDir": "../../dist/out-tsc",
76
"paths": {
8-
"~/*": ["src/*"],
7+
"~/*": ["./src/*"],
98
"@nativescript/angular": ["../../packages/angular/src/index.ts"],
109
"@nativescript/angular/*": ["../../packages/angular/src/*"],
1110
"@nativescript/angular/testing": ["../../packages/angular/testing/src/index.ts"],

apps/nativescript-demo-ng/tsconfig.spec.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"target": "es2020",
5-
"baseUrl": ".",
65
"types": ["node", "jasmine"],
76
"outDir": "../../dist/out-tsc",
87
"paths": {
9-
"~/*": ["src/*"],
8+
"~/*": ["./src/*"],
109
"@nativescript/angular": ["../../packages/angular/src/index.ts"],
1110
"@nativescript/angular/*": ["../../packages/angular/src/*"],
1211
"@nativescript/angular/testing": ["../../packages/angular/testing/src/index.ts"],

tsconfig.base.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,14 @@
1414
"lib": ["ESNext", "dom"],
1515
"skipLibCheck": true,
1616
"skipDefaultLibCheck": true,
17-
"baseUrl": ".",
1817
"strict": false,
1918
"paths": {
20-
"@nativescript/angular": ["packages/angular/src/index.ts"],
21-
"@nativescript/angular/*": ["packages/angular/src/*"],
22-
"@nativescript/angular/polyfills": ["packages/angular/polyfills/src/index.ts"],
23-
"@nativescript/angular/testing": ["packages/angular/testing/src/index.ts"],
24-
"@nativescript/zone-js": ["packages/zone-js/dist/index.ts"],
25-
"@nativescript/zone-js/*": ["packages/zone-js/*"]
19+
"@nativescript/angular": ["./packages/angular/src/index.ts"],
20+
"@nativescript/angular/*": ["./packages/angular/src/*"],
21+
"@nativescript/angular/polyfills": ["./packages/angular/polyfills/src/index.ts"],
22+
"@nativescript/angular/testing": ["./packages/angular/testing/src/index.ts"],
23+
"@nativescript/zone-js": ["./packages/zone-js/dist/index.ts"],
24+
"@nativescript/zone-js/*": ["./packages/zone-js/*"]
2625
}
2726
},
2827
"exclude": ["node_modules", "tmp", "apps/nativescript-*"],

0 commit comments

Comments
 (0)