diff --git a/boilerplates/react/tsconfig.json b/boilerplates/react/tsconfig.json
index 2230860ad..78b44372b 100644
--- a/boilerplates/react/tsconfig.json
+++ b/boilerplates/react/tsconfig.json
@@ -5,6 +5,8 @@
     "jsx": "preserve",
     "jsxImportSource": "react",
     "lib": ["DOM", "DOM.Iterable", "ES2022"],
+    "checkJs": false,
+    "allowJs": true,
     "baseUrl": "."
   }
 }
diff --git a/boilerplates/solid/tsconfig.json b/boilerplates/solid/tsconfig.json
index b4fd8af88..46808e48a 100644
--- a/boilerplates/solid/tsconfig.json
+++ b/boilerplates/solid/tsconfig.json
@@ -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
   }
 }
diff --git a/boilerplates/vue/tsconfig.json b/boilerplates/vue/tsconfig.json
index fe5f87e4f..29f7776fc 100644
--- a/boilerplates/vue/tsconfig.json
+++ b/boilerplates/vue/tsconfig.json
@@ -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
   }
 }