We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7f8ff86 + 52338d5 commit d77bb08Copy full SHA for d77bb08
packages/documentation/copy/en/modules-reference/appendices/ESM-CJS-Interop.md
@@ -208,7 +208,7 @@ exports.default = function doSomething() { /*...*/ }
208
import doSomething from "dependency";
209
// Works after transpilation, but not a function in Node.js ESM:
210
doSomething();
211
-// Doesn't exist after trasnpilation, but works in Node.js ESM:
+// Doesn't exist after transpilation, but works in Node.js ESM:
212
doSomething.default();
213
```
214
0 commit comments