aboutsummaryrefslogtreecommitdiff
path: root/examples/framework-alpine
diff options
context:
space:
mode:
Diffstat (limited to 'examples/framework-alpine')
-rw-r--r--examples/framework-alpine/astro.config.mjs1
-rw-r--r--examples/framework-alpine/package.json5
-rw-r--r--examples/framework-alpine/src/env.d.ts1
-rw-r--r--examples/framework-alpine/tsconfig.json4
4 files changed, 6 insertions, 5 deletions
diff --git a/examples/framework-alpine/astro.config.mjs b/examples/framework-alpine/astro.config.mjs
index 60bfc7d45..5fddf7717 100644
--- a/examples/framework-alpine/astro.config.mjs
+++ b/examples/framework-alpine/astro.config.mjs
@@ -1,3 +1,4 @@
+// @ts-check
import { defineConfig } from 'astro/config';
import alpine from '@astrojs/alpinejs';
diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json
index 386eee7ae..76306d93a 100644
--- a/examples/framework-alpine/package.json
+++ b/examples/framework-alpine/package.json
@@ -5,15 +5,14 @@
"private": true,
"scripts": {
"dev": "astro dev",
- "start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/alpinejs": "^0.4.0",
- "@types/alpinejs": "^3.13.11",
+ "@types/alpinejs": "^3.13.10",
"alpinejs": "^3.14.3",
- "astro": "^4.16.16"
+ "astro": "^5.0.0-beta.11"
}
}
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..8bf91d3bb 100644
--- a/examples/framework-alpine/tsconfig.json
+++ b/examples/framework-alpine/tsconfig.json
@@ -1,3 +1,5 @@
{
- "extends": "astro/tsconfigs/base"
+ "extends": "astro/tsconfigs/strict",
+ "include": [".astro/types.d.ts", "**/*"],
+ "exclude": ["dist"]
}