From: 丶远方 Date: Tue, 12 Mar 2024 13:46:26 +0000 (+0800) Subject: chore(playground): save `tsconfig.json` to the root directory; update Node.js version... X-Git-Tag: v3.4.22~58 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9e8ac0c367522922b5d8442b5a3cc508666978af;p=thirdparty%2Fvuejs%2Fcore.git chore(playground): save `tsconfig.json` to the root directory; update Node.js version requirement (#9086) Co-authored-by: Haoqun Jiang --- diff --git a/packages/sfc-playground/src/download/download.ts b/packages/sfc-playground/src/download/download.ts index f981134a70..28d836edb1 100644 --- a/packages/sfc-playground/src/download/download.ts +++ b/packages/sfc-playground/src/download/download.ts @@ -27,7 +27,7 @@ export async function downloadProject(store: ReplStore) { const files = store.getFiles() for (const file in files) { - if (file !== 'import-map.json') { + if (file !== 'import-map.json' && file !== 'tsconfig.json') { src.file(file, files[file]) } else { zip.file(file, files[file]) diff --git a/packages/sfc-playground/src/download/template/README.md b/packages/sfc-playground/src/download/template/README.md index 39c47d255a..9c43370cb8 100644 --- a/packages/sfc-playground/src/download/template/README.md +++ b/packages/sfc-playground/src/download/template/README.md @@ -1,6 +1,6 @@ # Vite Vue Starter -This is a project template using [Vite](https://vitejs.dev/). It requires [Node.js](https://nodejs.org) v12+. +This is a project template using [Vite](https://vitejs.dev/). It requires [Node.js](https://nodejs.org) version 18+, 20+. To start: