DEV Community

Discussion on: Migrate to Typescript on Node.js

Collapse
 
natelindev profile image
Nathaniel

You can find and replace your const module = require("module") with import module = require("module"), which also works with typescript.
Also there is a vs-code plugin to help you:
marketplace.visualstudio.com/items...

Collapse
 
karataev profile image
Eugene Karataev

Thanks!