summaryrefslogtreecommitdiff
path: root/examples/framework-vue
diff options
context:
space:
mode:
Diffstat (limited to 'examples/framework-vue')
-rw-r--r--examples/framework-vue/astro.config.mjs1
-rw-r--r--examples/framework-vue/package.json5
-rw-r--r--examples/framework-vue/src/env.d.ts1
-rw-r--r--examples/framework-vue/tsconfig.json4
4 files changed, 6 insertions, 5 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 d7afee280..ae8a1403f 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.2",
- "astro": "^4.16.14",
+ "@astrojs/vue": "^5.0.0-beta.1",
+ "astro": "^5.0.0-beta.8",
"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"