improve typecheck setup

This commit is contained in:
itsMapleLeaf
2023-03-12 19:44:59 -05:00
parent 33841a0c84
commit 7ac1a9cdce
9 changed files with 19 additions and 43 deletions

View File

@@ -1,5 +1,5 @@
{
"extends": "../../tsconfig.base.json",
"extends": "@itsmapleleaf/configs/tsconfig.base",
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "react",
@@ -8,15 +8,5 @@
"~/*": ["./src/*"]
}
},
"include": ["**/*.ts", "**/*.tsx", "**/*.cjs", "**/*.mjs", "**/*.astro"],
"exclude": [
"**/node_modules/**",
"**/coverage/**",
"**/build/**",
"**/dist/**",
"**/.cache/**",
"**/api/_build/**",
"**/public/**",
"app"
]
"exclude": ["node_modules", "dist", "public/api"]
}