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