fix config

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-11-13 09:43:28 +07:00
parent 82a8fc155a
commit a987e7565f
2 changed files with 9 additions and 2 deletions

View file

@ -1,10 +1,16 @@
{ {
"extends": "@vue/tsconfig/tsconfig.node.json", "extends": "@vue/tsconfig/tsconfig.node.json",
"include": ["vite.config.*", "vitest.config.*", "cypress.config.*", "playwright.config.*"], "include": [
"vite.config.*",
"vitest.config.*",
"cypress.config.*",
"playwright.config.*"
],
"compilerOptions": { "compilerOptions": {
"composite": true, "composite": true,
"types": ["node"], "types": ["node"],
"ignoreDeprecations": "5.0", "ignoreDeprecations": "5.0",
"verbatimModuleSyntax": true "verbatimModuleSyntax": true,
"module": "esnext"
} }
} }

View file

@ -27,4 +27,5 @@ export default defineConfig({
server: { server: {
port: 3005, port: 3005,
}, },
base: "./",
}); });