diff options
Diffstat (limited to 'examples/framework-vue')
-rw-r--r-- | examples/framework-vue/astro.config.mjs | 1 | ||||
-rw-r--r-- | examples/framework-vue/package.json | 7 | ||||
-rw-r--r-- | examples/framework-vue/src/env.d.ts | 1 | ||||
-rw-r--r-- | examples/framework-vue/tsconfig.json | 4 |
4 files changed, 7 insertions, 6 deletions
diff --git a/examples/framework-vue/astro.config.mjs b/examples/framework-vue/astro.config.mjs index f30130a95..5afe92269 100644 --- a/examples/framework-vue/astro.config.mjs +++ b/examples/framework-vue/astro.config.mjs @@ -1,3 +1,4 @@ +// @ts-check import { defineConfig } from 'astro/config'; import vue from '@astrojs/vue'; diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index ea4b96d58..3d9686f09 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -5,14 +5,13 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro" }, "dependencies": { - "@astrojs/vue": "^4.5.3", - "astro": "^4.16.16", - "vue": "^3.5.13" + "@astrojs/vue": "^5.0.0-beta.2", + "astro": "^5.0.0-beta.11", + "vue": "^3.5.12" } } 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..a19c58a62 100644 --- a/examples/framework-vue/tsconfig.json +++ b/examples/framework-vue/tsconfig.json @@ -1,5 +1,7 @@ { - "extends": "astro/tsconfigs/base", + "extends": "astro/tsconfigs/strict", + "include": [".astro/types.d.ts", "**/*"], + "exclude": ["dist"], "compilerOptions": { // Needed for TypeScript intellisense in the template inside Vue files "jsx": "preserve" |