build: update scaffolding to current create-vue template

This commit is contained in:
Sebin Nyshkim 2023-09-01 12:29:06 +02:00
parent 0335006ee5
commit 0c8a3b0348
3 changed files with 27 additions and 11 deletions

View file

@ -1,8 +1,17 @@
{
"extends": "@vue/tsconfig/tsconfig.node.json",
"include": ["vite.config.*", "vitest.config.*", "cypress.config.*", "playwright.config.*"],
"extends": "@tsconfig/node18/tsconfig.json",
"include": [
"globals.d.ts",
"vite.config.*",
"vitest.config.*",
"cypress.config.*",
"nightwatch.conf.*",
"playwright.config.*"
],
"compilerOptions": {
"composite": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"types": ["node"]
}
}