diff options
Diffstat (limited to 'examples/framework-svelte')
-rw-r--r-- | examples/framework-svelte/package.json | 5 | ||||
-rw-r--r-- | examples/framework-svelte/src/env.d.ts | 1 | ||||
-rw-r--r-- | examples/framework-svelte/tsconfig.json | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index c7f7d4e46..080518c6d 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/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/svelte": "^5.7.2", - "astro": "^4.16.7", + "@astrojs/svelte": "^6.0.0-beta.1", + "astro": "^5.0.0-beta.5", "svelte": "^4.2.19" } } diff --git a/examples/framework-svelte/src/env.d.ts b/examples/framework-svelte/src/env.d.ts deleted file mode 100644 index e16c13c69..000000000 --- a/examples/framework-svelte/src/env.d.ts +++ /dev/null @@ -1 +0,0 @@ -/// <reference path="../.astro/types.d.ts" /> diff --git a/examples/framework-svelte/tsconfig.json b/examples/framework-svelte/tsconfig.json index d78f81ec4..f11a46c8e 100644 --- a/examples/framework-svelte/tsconfig.json +++ b/examples/framework-svelte/tsconfig.json @@ -1,3 +1,5 @@ { - "extends": "astro/tsconfigs/base" + "extends": "astro/tsconfigs/base", + "include": [".astro/types.d.ts", "**/*"], + "exclude": ["dist"] } |