Closed
Description
Bug Report
🔎 Search Terms
NodeNext, esm, CJS, colors
🕗 Version & Regression Information
- This only occurs in 4.7 and 4.8 builds
- I was unable to test this on prior versions because node16/nodenext is only supported in the nightly versions.
⏯ Playground Link
I didn't include a playground link, as I can't reference dependencies there.
See here for an MWE.
To test:
yarn install
yarn tsc
💻 Code
import colors from "colors";
console.log(colors)
🙁 Actual behavior
TypeScript cannot find the typings for some CommonJS packages such as colors and form-data-encoder
As a result, I'm getting this error:
src/index.ts:1:20 - error TS7016: Could not find a declaration file for module 'colors'. '/home/lrd900/triply/playground/cjs/node_modules/colors/lib/index.js' implicitly has an 'any' type.
Try `npm i --save-dev @types/colors` if it exists or add a new declaration (.d.ts) file containing `declare module 'colors';`
1 import colors from "colors";
~~~~~~~~
Found 1 error in src/index.ts:1
🙂 Expected behavior
ESM module behaviour to import CJS as it used to.