Skip to content

Commit 2ce801c

Browse files
chore: upgrade to TypeScript 6.0.2 (closes #101)
- tsconfig.base.json: ignoreDeprecations for baseUrl (Angular still needs it) - tools/builders/dotnet-builder: explicit rootDir, node10, ignoreDeprecations - tools/update-packages: node10 moduleResolution + ignoreDeprecations - tools/tsconfig.tools.json: node10 moduleResolution + ignoreDeprecations Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 8781b1a commit 2ce801c

6 files changed

Lines changed: 310 additions & 299 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136
"rimraf": "6.1.3",
137137
"tailwindcss": "4.2.2",
138138
"ts-node": "10.9.2",
139-
"typescript": "5.9.3",
139+
"typescript": "6.0.2",
140140
"typescript-eslint": "8.58.0",
141141
"vite": "8.0.3",
142142
"vitest": "4.1.2"

pnpm-lock.yaml

Lines changed: 301 additions & 294 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/builders/dotnet-builder/tsconfig.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
{
22
"compilerOptions": {
33
"outDir": "./dist",
4-
"baseUrl": "tsconfig",
4+
"rootDir": "./src",
55
"target": "es6",
66
"declaration": true,
77
"module": "commonjs",
8-
"moduleResolution": "node",
8+
"moduleResolution": "node10",
9+
"ignoreDeprecations": "6.0",
910
"noEmitOnError": true,
1011
"noFallthroughCasesInSwitch": true,
1112
"noImplicitAny": true,

tools/tsconfig.tools.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"outDir": "../dist/out-tsc/tools",
55
"rootDir": ".",
66
"module": "commonjs",
7-
"moduleResolution": "node",
7+
"moduleResolution": "node10",
8+
"ignoreDeprecations": "6.0",
89
"target": "es5",
910
"types": ["node"]
1011
},

tools/update-packages/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
],
1313
"compilerOptions": {
1414
"module": "commonjs",
15-
"moduleResolution": "node",
15+
"moduleResolution": "node10",
16+
"ignoreDeprecations": "6.0",
1617
"esModuleInterop": true
1718
}
1819
}

tsconfig.base.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"skipLibCheck": true,
1616
"skipDefaultLibCheck": true,
1717
"baseUrl": ".",
18+
"ignoreDeprecations": "6.0",
1819
"paths": {
1920
"@myorg/auth": ["libs/auth/src/index.ts"],
2021
"@myorg/counter": ["libs/counter/src/index.ts"],

0 commit comments

Comments
 (0)