summaryrefslogtreecommitdiff
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/tsconfig.json2
2 files changed, 2 insertions, 1 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/tsconfig.json b/examples/framework-alpine/tsconfig.json
index f11a46c8e..8bf91d3bb 100644
--- a/examples/framework-alpine/tsconfig.json
+++ b/examples/framework-alpine/tsconfig.json
@@ -1,5 +1,5 @@
{
- "extends": "astro/tsconfigs/base",
+ "extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"]
}