From 892f0a17785f95a77e6395b57664e66c4765ac47 Mon Sep 17 00:00:00 2001 From: chark1es Date: Wed, 24 Jan 2024 01:41:09 -0800 Subject: [PATCH] fix build error Fixes build error when building the website --- tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 70f49aa..1f38a4f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,7 @@ { + "extends": "astro/tsconfigs/base", "compilerOptions": { "allowSyntheticDefaultImports": true - } + }, + "exclude": ["node_modules", "**/node_modules/*", ".vscode", "dist"] }