From f9a873b7f094f8a692a67d5747ff31a3a31b9882 Mon Sep 17 00:00:00 2001 From: TAKAHASHI Shuuji Date: Wed, 27 Nov 2024 13:04:31 +0900 Subject: [PATCH] revert: update moduleResolution value casing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit resolve #1754 https://github.com/vitejs/vite/commit/b0fc6e3c2591a30360d3714263cf7cc0e2acbfdf の反映です。 --- .vitepress/tsconfig.json | 4 ++-- guide/performance.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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` 拡張子を使用できるようにしてください。 ::: ## バレルファイルを避ける