Skip to content

Commit 4f009d9

Browse files
committed
fix check-types
1 parent bdcddf0 commit 4f009d9

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

boilerplates/react/tsconfig.json

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
"jsx": "preserve",
66
"jsxImportSource": "react",
77
"lib": ["DOM", "DOM.Iterable", "ES2022"],
8+
"checkJs": false,
9+
"allowJs": true,
810
"baseUrl": "."
911
}
1012
}

boilerplates/solid/tsconfig.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
"types": ["vite/client", "@types/node", "vike-solid/client", "@batijs/core/types"],
55
"jsx": "preserve",
66
"jsxImportSource": "solid-js",
7-
"lib": ["DOM", "DOM.Iterable", "ES2022"]
7+
"lib": ["DOM", "DOM.Iterable", "ES2022"],
8+
"checkJs": false,
9+
"allowJs": true
810
}
911
}

boilerplates/vue/tsconfig.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
"types": ["vite/client", "@types/node", "@batijs/core/types"],
55
"jsx": "preserve",
66
"jsxImportSource": "vue",
7-
"lib": ["DOM", "DOM.Iterable", "ES2022"]
7+
"lib": ["DOM", "DOM.Iterable", "ES2022"],
8+
"checkJs": false,
9+
"allowJs": true
810
}
911
}

0 commit comments

Comments
 (0)