We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 831f557 commit a809cf5Copy full SHA for a809cf5
guide/features.md
@@ -129,12 +129,18 @@ Vite はデフォルトでは Node.js の API を提供します。Vite でク
129
```json [tsconfig.json]
130
{
131
"compilerOptions": {
132
- "types": ["vite/client"]
+ "types": ["vite/client", "some-other-global-lib"]
133
}
134
135
```
136
137
-これにより次のことが提供されます:
+::: warning
138
+
139
+[`compilerOptions.types`](https://www.typescriptlang.org/tsconfig#types) が指定された場合、グローバルスコープには(見つかるすべての "@types" パッケージの代わりに)これらのパッケージのみが含まれるようになります。
140
141
+:::
142
143
+`vite/client` は以下の型のシム(shim)を提供します:
144
145
- アセットのインポート(例: `.svg` ファイルのインポート)
146
- `import.meta.env` に Vite が挿入した[環境変数](./env-and-mode#env-variables)の型
0 commit comments