We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
tsconfig.json
1 parent 3648498 commit 9e8ac0cCopy full SHA for 9e8ac0c
packages/sfc-playground/src/download/download.ts
@@ -27,7 +27,7 @@ export async function downloadProject(store: ReplStore) {
27
28
const files = store.getFiles()
29
for (const file in files) {
30
- if (file !== 'import-map.json') {
+ if (file !== 'import-map.json' && file !== 'tsconfig.json') {
31
src.file(file, files[file])
32
} else {
33
zip.file(file, files[file])
packages/sfc-playground/src/download/template/README.md
@@ -1,6 +1,6 @@
1
# Vite Vue Starter
2
3
-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+.
4
5
To start:
6
0 commit comments