We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f381d4 commit 7764cdcCopy full SHA for 7764cdc
1 file changed
lib/utils/loaderCheck.js
@@ -121,6 +121,14 @@ export function getTSNodeESMWarning(requiredModules = []) {
121
122
This is a known limitation. Use tsx/cjs instead to write imports without extensions.
123
124
+Examples:
125
+
126
+ ❌ Incorrect (will fail):
127
+ import loginPage from "./pages/Login";
128
129
+ ✅ Correct (must include .ts extension):
130
+ import loginPage from "./pages/Login.ts";
131
132
📚 Documentation: https://codecept.io/typescript
133
134
`
0 commit comments