Skip to content

Commit d9c9705

Browse files
committed
chore(ci): upgrade to typescript 7
Signed-off-by: Cory Rylan <crylan@nvidia.com>
1 parent 6fa19e5 commit d9c9705

33 files changed

Lines changed: 1449 additions & 923 deletions

pnpm-lock.yaml

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

pnpm-workspace.yaml

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ catalog:
7878
'@types/node': 25.6.2
7979
'@types/react': 19.2.14
8080
'@types/react-dom': 19.2.3
81-
'@vitest/browser': 4.1.5
82-
'@vitest/browser-playwright': 4.1.5
83-
'@vitest/coverage-istanbul': 4.1.5
81+
'@vitest/browser': 4.1.6
82+
'@vitest/browser-playwright': 4.1.6
83+
'@vitest/coverage-istanbul': 4.1.6
8484
axe-core: 4.11.0
8585
eslint: 10.3.0
8686
glob: 13.0.6
@@ -101,17 +101,25 @@ catalog:
101101
stylelint: 17.11.0
102102
stylelint-config-standard: 40.0.0
103103
ts-morph: 26.0.0
104+
'@typescript/native-preview': 7.0.0-dev.20260518.1
104105
typescript: 6.0.3
105106
typescript-eslint: 8.58.1
106-
vite: 8.0.11
107-
vite-plugin-dts: 4.5.4
108-
vitest: 4.1.5
107+
vite: 8.0.13
108+
vite-plugin-dts: 5.0.0
109+
vitest: 4.1.6
109110
zod: 4.4.3
110111

111112
minimumReleaseAge: 1140
112113

113114
minimumReleaseAgeExclude:
114-
- '@types/node'
115+
- '@typescript/native-preview'
116+
- '@typescript/native-preview-linux-x64'
117+
- '@typescript/native-preview-win32-x64'
118+
- '@typescript/native-preview-win32-arm64'
119+
- '@typescript/native-preview-darwin-arm64'
120+
- '@typescript/native-preview-linux-arm64'
121+
- '@typescript/native-preview-linux-arm'
122+
- '@typescript/native-preview-darwin-x64'
115123
- playwright
116124
- playwright-core
117125
- publint

projects/cli/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"compilerOptions": {
3+
"noUncheckedSideEffectImports": true,
34
"skipLibCheck": true,
45
"module": "es2022",
56
"target": "es2022",

projects/code/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"compilerOptions": {
3+
"noUncheckedSideEffectImports": true,
34
"skipLibCheck": true,
45
"module": "es2022",
56
"target": "es2022",

projects/core/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"compilerOptions": {
3+
"noUncheckedSideEffectImports": true,
34
"skipLibCheck": true,
45
"module": "es2022",
56
"target": "es2022",

projects/create/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"compilerOptions": {
3+
"noUncheckedSideEffectImports": true,
34
"skipLibCheck": true,
45
"module": "es2022",
56
"target": "es2022",

projects/forms/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"compilerOptions": {
3+
"noUncheckedSideEffectImports": true,
34
"skipLibCheck": true,
45
"module": "es2022",
56
"target": "es2022",

projects/internals/metadata/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"compilerOptions": {
3+
"noUncheckedSideEffectImports": true,
34
"skipLibCheck": true,
45
"module": "esnext",
56
"target": "es2022",

projects/internals/patterns/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"compilerOptions": {
3+
"noUncheckedSideEffectImports": true,
34
"skipLibCheck": true,
45
"module": "es2022",
56
"target": "es2022",

projects/internals/testing/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"compilerOptions": {
3+
"noUncheckedSideEffectImports": true,
34
"skipLibCheck": true,
45
"module": "es2022",
56
"allowJs": true,

0 commit comments

Comments
 (0)