Skip to content

Commit

Permalink
fix check-types
Browse files Browse the repository at this point in the history
  • Loading branch information
phonzammi committed Nov 13, 2024
1 parent bdcddf0 commit 4f009d9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions boilerplates/react/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
"jsx": "preserve",
"jsxImportSource": "react",
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"checkJs": false,
"allowJs": true,
"baseUrl": "."
}
}
4 changes: 3 additions & 1 deletion boilerplates/solid/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
"types": ["vite/client", "@types/node", "vike-solid/client", "@batijs/core/types"],
"jsx": "preserve",
"jsxImportSource": "solid-js",
"lib": ["DOM", "DOM.Iterable", "ES2022"]
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"checkJs": false,
"allowJs": true
}
}
4 changes: 3 additions & 1 deletion boilerplates/vue/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
"types": ["vite/client", "@types/node", "@batijs/core/types"],
"jsx": "preserve",
"jsxImportSource": "vue",
"lib": ["DOM", "DOM.Iterable", "ES2022"]
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"checkJs": false,
"allowJs": true
}
}

0 comments on commit 4f009d9

Please sign in to comment.