Updated tsconfig.json.

This commit is contained in:
David Ball 2024-07-17 18:02:20 -04:00
parent f4b8bc20bb
commit bd0a53d144

View File

@ -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/**/*"
]
}