diff options
Diffstat (limited to 'examples/framework-preact')
-rw-r--r-- | examples/framework-preact/package.json | 3 | ||||
-rw-r--r-- | examples/framework-preact/src/env.d.ts | 1 | ||||
-rw-r--r-- | examples/framework-preact/tsconfig.json | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 8dbf057e7..f8b8de537 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -5,7 +5,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro" @@ -13,7 +12,7 @@ "dependencies": { "@astrojs/preact": "^3.5.3", "@preact/signals": "^1.3.0", - "astro": "^4.16.7", + "astro": "^5.0.0-beta.5", "preact": "^10.24.3" } } diff --git a/examples/framework-preact/src/env.d.ts b/examples/framework-preact/src/env.d.ts deleted file mode 100644 index e16c13c69..000000000 --- a/examples/framework-preact/src/env.d.ts +++ /dev/null @@ -1 +0,0 @@ -/// <reference path="../.astro/types.d.ts" /> diff --git a/examples/framework-preact/tsconfig.json b/examples/framework-preact/tsconfig.json index bdd1b5a88..50ad34429 100644 --- a/examples/framework-preact/tsconfig.json +++ b/examples/framework-preact/tsconfig.json @@ -1,5 +1,7 @@ { "extends": "astro/tsconfigs/base", + "include": [".astro/types.d.ts", "**/*"], + "exclude": ["dist"], "compilerOptions": { // Preact specific settings "jsx": "react-jsx", |