From bd0a53d144d8db564ca0c1f1b580f9260c19c30c Mon Sep 17 00:00:00 2001 From: David Ball Date: Wed, 17 Jul 2024 18:02:20 -0400 Subject: [PATCH] Updated tsconfig.json. --- tsconfig.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 71a3188..92b12b8 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,15 @@ { - "extends": "astro/tsconfigs/strict", + "extends": "./tsconfig.strict.json", "compilerOptions": { - "jsx": "react-jsx", - "jsxImportSource": "react" - } + "noImplicitAny": false, + "noEmitOnError": true, + "removeComments": false, + "sourceMap": true, + "target": "ESNext", + "outDir": "dist" + }, + "include": [ + "src/**/*", + "tests/**/*" + ] } \ No newline at end of file