summaryrefslogtreecommitdiff
path: root/website/tsconfig.json
diff options
context:
space:
mode:
authorJoe Carstairs <jcarstairs@scottlogic.com>2025-01-28 18:06:53 +0000
committerJoe Carstairs <jcarstairs@scottlogic.com>2025-01-28 18:06:53 +0000
commited52216fb8df3c5c6ed1561ed59699a67a950187 (patch)
tree643debcd204e511e0842a68f6946a97a26f51814 /website/tsconfig.json
parent17aa658fb8b86a5caf3d3608f7871e43d09be55a (diff)
parentc9f6c53a0d9617e3d3a6862b3998322c2a1470c8 (diff)
Merge branch 'main' of https://github.com/joeacarstairs/personal-website
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"]
+}