Skip to content

Commit

Permalink
revert: update moduleResolution value casing (#1756)
Browse files Browse the repository at this point in the history
resolve #1754

vitejs/vite@b0fc6e3 の反映です。
  • Loading branch information
shuuji3 authored Nov 27, 2024
1 parent ce4c4cc commit 2f726dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .vitepress/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"moduleResolution": "bundler",
"strict": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"esModuleInterop": true,
"noEmit": true
},
"exclude": ["cache", "dist"]
}
}
2 changes: 1 addition & 1 deletion guide/performance.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Vite の内部および公式プラグインは、幅広いエコシステムと
プラグインの作者の場合は上記のチェックの回数を減らすために、必要な時にのみ [`this.resolve`](https://rollupjs.org/plugin-development/#this-resolve) を呼び出すようにしてください。

::: tip TypeScript
TypeScript を使用している場合は、`tsconfig.json``compilerOptions``"moduleResolution": "Bundler"` および `"allowImportingTsExtensions": true` を有効にして、コード内で直接 `.ts` および `.tsx` 拡張子を使用できるようにしてください。
TypeScript を使用している場合は、`tsconfig.json``compilerOptions``"moduleResolution": "bundler"` および `"allowImportingTsExtensions": true` を有効にして、コード内で直接 `.ts` および `.tsx` 拡張子を使用できるようにしてください。
:::

## バレルファイルを避ける
Expand Down

0 comments on commit 2f726dc

Please sign in to comment.