Skip to content

Commit

Permalink
docs(Upgrade-Guide): correct misleading advice
Browse files Browse the repository at this point in the history
  • Loading branch information
djcsdy committed Aug 23, 2024
1 parent 0d0cb6e commit e98a08f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/Upgrade-Guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
- Rename `webpack.config.js` to `webpack.config.cjs`
- Change all `import ... from "foo"` to `foo.js` (even if the source file is
`.ts` or `.tsx`).
- Change all `import foo = require("foo")` to `import foo from "foo"`.
- Change all `import foo = require("foo")` to `import foo from "foo.js"`
(even if the source file is `.ts` or `.tsx`).
- Migrate AVA to ESM if required (see
https://github.com/avajs/ava/blob/main/docs/recipes/typescript.md#for-packages-with-type-module)
- See https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c
Expand Down

0 comments on commit e98a08f

Please sign in to comment.