WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit f8319f6

Browse files
committed
chore: merge main
2 parents ddd6427 + ab0c3b2 commit f8319f6

File tree

12 files changed

+235
-272
lines changed

12 files changed

+235
-272
lines changed

docs/guide/features.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ export type { T }
5353

5454
### TypeScript Compiler Options
5555

56+
Vite respects some of the options in `tsconfig.json` and sets the corresponding esbuild options. For each file, Vite uses the `tsconfig.json` in the closest parent directory. If that `tsconfig.json` contains a [`references`](https://www.typescriptlang.org/tsconfig/#references) field, Vite will use the referenced config file that satisfies the [`include`](https://www.typescriptlang.org/tsconfig/#include) and [`exclude`](https://www.typescriptlang.org/tsconfig/#exclude) fields.
57+
58+
When the options are set in both the Vite config and the `tsconfig.json`, the value in the Vite config takes precedence.
59+
5660
Some configuration fields under `compilerOptions` in `tsconfig.json` require special attention.
5761

5862
#### `isolatedModules`

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
"rollup": "^4.43.0",
6969
"simple-git-hooks": "^2.13.1",
7070
"tsx": "^4.21.0",
71-
"typescript": "~5.9.2",
71+
"typescript": "~5.9.3",
7272
"typescript-eslint": "^8.48.0",
7373
"vite": "workspace:*",
7474
"vitest": "^4.0.14"

playground/css-lightningcss-proxy/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
},
1111
"devDependencies": {
1212
"lightningcss": "^1.30.2",
13-
"express": "^5.1.0"
13+
"express": "^5.2.0"
1414
}
1515
}

playground/legacy/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"devDependencies": {
1818
"vite": "workspace:*",
1919
"@vitejs/plugin-legacy": "workspace:*",
20-
"express": "^5.1.0",
20+
"express": "^5.2.0",
2121
"terser": "^5.44.1"
2222
}
2323
}

playground/optimize-missing-deps/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
"@vitejs/test-missing-dep": "file:./missing-dep"
1111
},
1212
"devDependencies": {
13-
"express": "^5.1.0"
13+
"express": "^5.2.0"
1414
}
1515
}

playground/ssr-conditions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"@vitejs/test-ssr-conditions-no-external": "file:./no-external"
1717
},
1818
"devDependencies": {
19-
"express": "^5.1.0",
19+
"express": "^5.2.0",
2020
"sirv": "^3.0.2"
2121
}
2222
}

playground/ssr-deps/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@
3434
"@vitejs/test-ts-transpiled-exports": "file:./ts-transpiled-exports"
3535
},
3636
"devDependencies": {
37-
"express": "^5.1.0"
37+
"express": "^5.2.0"
3838
}
3939
}

playground/ssr-html/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
},
1313
"dependencies": {},
1414
"devDependencies": {
15-
"express": "^5.1.0"
15+
"express": "^5.2.0"
1616
}
1717
}

playground/ssr-noexternal/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
"dependencies": {
1313
"@vitejs/test-external-cjs": "file:./external-cjs",
1414
"@vitejs/test-require-external-cjs": "file:./require-external-cjs",
15-
"express": "^5.1.0"
15+
"express": "^5.2.0"
1616
}
1717
}

playground/ssr-pug/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"debug": "node --inspect-brk server"
1010
},
1111
"devDependencies": {
12-
"express": "^5.1.0",
12+
"express": "^5.2.0",
1313
"pug": "^3.0.3"
1414
}
1515
}

0 commit comments

Comments
 (0)