diff --git a/examples/vue/tsconfig.json b/examples/vue/tsconfig.json index 07b9f80cb051..e6cbbed7d56b 100644 --- a/examples/vue/tsconfig.json +++ b/examples/vue/tsconfig.json @@ -1,5 +1,6 @@ { "compilerOptions": { - "target": "esnext" + "target": "esnext", + "moduleResolution": "node", } } diff --git a/examples/vue/vitest.config.ts b/examples/vue/vitest.config.ts index 4e3147e9b6df..c780bf3e6b08 100644 --- a/examples/vue/vitest.config.ts +++ b/examples/vue/vitest.config.ts @@ -1,3 +1,5 @@ +/// + import { defineConfig } from 'vite' import Vue from '@vitejs/plugin-vue'