diff --git a/tsconfig.config.json b/tsconfig.config.json index 92f9cb6e..48ba8afb 100644 --- a/tsconfig.config.json +++ b/tsconfig.config.json @@ -1,10 +1,16 @@ { "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": { "composite": true, "types": ["node"], "ignoreDeprecations": "5.0", - "verbatimModuleSyntax": true + "verbatimModuleSyntax": true, + "module": "esnext" } } diff --git a/vite.config.ts b/vite.config.ts index 4ca2354a..b7e8a8b8 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -27,4 +27,5 @@ export default defineConfig({ server: { port: 3005, }, + base: "./", });