From 1d331ac92224b3faa24b01c0aead9949f09e5df8 Mon Sep 17 00:00:00 2001 From: TAKAHASHI Shuuji Date: Fri, 16 May 2025 12:10:18 +0900 Subject: [PATCH] chore!: remove node 18 support MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit resolve #1950 https://github.com/vitejs/vite/commit/00b8a98f36376804437e1342265453915ae613de の反映です。 --- .github/workflows/lint.yml | 2 +- .vitepress/tsconfig.json | 4 ++-- guide/index.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 5cf9e17a..cc3692e2 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -12,7 +12,7 @@ jobs: - uses: pnpm/action-setup@v4 - uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 22 cache: 'pnpm' - name: Install deps run: pnpm install diff --git a/.vitepress/tsconfig.json b/.vitepress/tsconfig.json index d6ac8578..758d3376 100644 --- a/.vitepress/tsconfig.json +++ b/.vitepress/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { - "target": "ES2022", - "module": "ESNext", + "target": "ES2023", + "module": "Preserve", "moduleResolution": "bundler", "strict": true, "noImplicitOverride": true, diff --git a/guide/index.md b/guide/index.md index 5569877b..2a1d3aec 100644 --- a/guide/index.md +++ b/guide/index.md @@ -44,7 +44,7 @@ Vite は完全な型サポートのある [Plugin API](./api-plugin) と [JavaSc ## 最初の Vite プロジェクトを生成する ::: tip 互換性について -Vite は [Node.js](https://nodejs.org/en/) 18+ または 20+ のバージョンが必要です。ただし、一部のテンプレートではそれ以上のバージョンの Node.js を必要としますので、パッケージマネージャーが警告を出した場合はアップグレードしてください。 +Vite は [Node.js](https://nodejs.org/en/) 20+ のバージョンが必要です。ただし、一部のテンプレートではそれ以上のバージョンの Node.js を必要としますので、パッケージマネージャーが警告を出した場合はアップグレードしてください。 ::: ::: code-group