I am trying to use moment in my TypeScript project but when I use the line,
import moment from 'moment';
I get the error:
'node_modules/moment/moment' has no default export.
I have also tried,
import moment from 'moment/src/moment';
but then I get the error:
'Cannot find module moment/src/moment'.
Does anybody know a way of doing this? Thanks.
import moment = require('./bower_components/moment/src/moment');? Orimport moment = module('moment');?