I\'m trying to learn Typescript. While I don\'t think it\'s relevant, I\'m using VSCode for this demo.
I have a package.json that has these pieces in it
package.json
Still broken? Try uninstalling @types/moment.
@types/moment
So, I removed @types/moment package from the package.json file and it worked using:
import * as moment from 'moment'
Newer versions of moment don't require the @types/moment package as types are already included.
moment