- Rename the file from
.js
to.ts
- Change
module.exports =
toexport =
- Change all
exports.foobar =
toexport const foobar =
- Update top-level
require
calls to staticimport
.
.js
to .ts
module.exports =
to export =
exports.foobar =
to export const foobar =
require
calls to static import
.