diff --git a/.vitepress/tsconfig.json b/.vitepress/tsconfig.json index e8468267..d6ac8578 100644 --- a/.vitepress/tsconfig.json +++ b/.vitepress/tsconfig.json @@ -2,7 +2,7 @@ "compilerOptions": { "target": "ES2022", "module": "ESNext", - "moduleResolution": "Bundler", + "moduleResolution": "bundler", "strict": true, "noImplicitOverride": true, "noUnusedLocals": true, @@ -10,4 +10,4 @@ "noEmit": true }, "exclude": ["cache", "dist"] -} \ No newline at end of file +} diff --git a/guide/performance.md b/guide/performance.md index 3e784662..5c6766ba 100644 --- a/guide/performance.md +++ b/guide/performance.md @@ -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` 拡張子を使用できるようにしてください。 ::: ## バレルファイルを避ける