From b06a135e18467e96fe7da93b599362fdefc03692 Mon Sep 17 00:00:00 2001 From: Korbs Date: Fri, 7 Jun 2024 03:16:20 -0400 Subject: [PATCH] Import utils and enable AllowJS --- tsconfig.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 6c1b602..676682a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,7 @@ { "compilerOptions": { + "strictNullChecks": true, + "allowJs": true, "baseUrl": ".", "paths": { // https://docs.astro.build/en/guides/aliases/ @@ -7,6 +9,7 @@ "@components/*": ["src/components/*"], "@layouts/*": ["src/layouts/*"], "@styles/*": ["src/styles/*"], + "@utils/*": ["src/utils/*"] } } } \ No newline at end of file