build: allow importing .ts extensions in Convex tsconfig

Enable allowImportingTsExtensions in the Convex tsconfig so the
backend code that uses explicit .ts import specifiers type-checks
cleanly.
This commit is contained in:
-Puter
2026-07-29 19:32:18 +05:30
parent ed28943e7a
commit 64a783b445

View File

@@ -6,6 +6,7 @@
"compilerOptions": { "compilerOptions": {
/* These settings are not required by Convex and can be modified. */ /* These settings are not required by Convex and can be modified. */
"allowJs": true, "allowJs": true,
"allowImportingTsExtensions": true,
"strict": true, "strict": true,
"moduleResolution": "Bundler", "moduleResolution": "Bundler",
"jsx": "react-jsx", "jsx": "react-jsx",