diff options
Diffstat (limited to 'examples/framework-alpine')
-rw-r--r-- | examples/framework-alpine/package.json | 3 | ||||
-rw-r--r-- | examples/framework-alpine/src/env.d.ts | 1 | ||||
-rw-r--r-- | examples/framework-alpine/tsconfig.json | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index fec109d3a..cfa39e0ac 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -5,7 +5,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro" @@ -14,6 +13,6 @@ "@astrojs/alpinejs": "^0.4.0", "@types/alpinejs": "^3.13.10", "alpinejs": "^3.14.3", - "astro": "^4.16.7" + "astro": "^5.0.0-beta.5" } } diff --git a/examples/framework-alpine/src/env.d.ts b/examples/framework-alpine/src/env.d.ts deleted file mode 100644 index e16c13c69..000000000 --- a/examples/framework-alpine/src/env.d.ts +++ /dev/null @@ -1 +0,0 @@ -/// <reference path="../.astro/types.d.ts" /> diff --git a/examples/framework-alpine/tsconfig.json b/examples/framework-alpine/tsconfig.json index d78f81ec4..f11a46c8e 100644 --- a/examples/framework-alpine/tsconfig.json +++ b/examples/framework-alpine/tsconfig.json @@ -1,3 +1,5 @@ { - "extends": "astro/tsconfigs/base" + "extends": "astro/tsconfigs/base", + "include": [".astro/types.d.ts", "**/*"], + "exclude": ["dist"] } |