diff options
Diffstat (limited to 'examples/framework-vue')
-rw-r--r-- | examples/framework-vue/package.json | 2 | ||||
-rw-r--r-- | examples/framework-vue/src/env.d.ts | 1 | ||||
-rw-r--r-- | examples/framework-vue/tsconfig.json | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index f0161cd31..8214c6316 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@astrojs/vue": "^4.5.1", - "astro": "^4.15.9", + "astro": "^5.0.0-beta.1", "vue": "^3.5.3" } } diff --git a/examples/framework-vue/src/env.d.ts b/examples/framework-vue/src/env.d.ts deleted file mode 100644 index e16c13c69..000000000 --- a/examples/framework-vue/src/env.d.ts +++ /dev/null @@ -1 +0,0 @@ -/// <reference path="../.astro/types.d.ts" /> diff --git a/examples/framework-vue/tsconfig.json b/examples/framework-vue/tsconfig.json index 2d48ed5fd..1d2def771 100644 --- a/examples/framework-vue/tsconfig.json +++ b/examples/framework-vue/tsconfig.json @@ -1,5 +1,7 @@ { "extends": "astro/tsconfigs/base", + "include": [".astro/types.d.ts", "**/*"], + "exclude": ["dist"], "compilerOptions": { // Needed for TypeScript intellisense in the template inside Vue files "jsx": "preserve" |