summaryrefslogtreecommitdiff
path: root/website/tsconfig.json
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2024-12-24 09:26:32 +0000
committerJoe Carstairs <me@joeac.net>2024-12-24 09:26:32 +0000
commit532f75bea033e8073c4c1bc1dff72fa6af7d5316 (patch)
treeb39d4419a9b23fc210399c6277628b1a2d4f5dee /website/tsconfig.json
parentb080e5631416451e548ff4de943e1b6a196225ee (diff)
Upgrades to Astro 5
Diffstat (limited to 'website/tsconfig.json')
-rw-r--r--website/tsconfig.json11
1 files changed, 8 insertions, 3 deletions
diff --git a/website/tsconfig.json b/website/tsconfig.json
index 41bbfbf..7fc8467 100644
--- a/website/tsconfig.json
+++ b/website/tsconfig.json
@@ -1,6 +1,11 @@
{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
- "strictNullChecks": true
- }
-} \ No newline at end of file
+ "strictNullChecks": true
+ },
+ "include": [
+ ".astro/types.d.ts",
+ "**/*"
+ ],
+ "exclude": ["dist"]
+}