酒店预订平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 3 година
12345678910111213141516171819202122232425262728
  1. # Frequently asked questions
  2. _This document is a work in progress and it is used to collect common questions._
  3. ## How to import moment in TypeScript?
  4. ### Have trouble importing moment?
  5. If your tsconfig.json contains the following config, you must do the default import workflow `import moment from 'moment'`:
  6. ```json
  7. // tsconfig.json
  8. // https://www.typescriptlang.org/v2/docs/handbook/release-notes/typescript-2-7.html
  9. {
  10. "compilerOptions": {
  11. "esModuleInterop": true,
  12. "allowSyntheticDefaultImports": true,
  13. }
  14. }
  15. ```
  16. If you don't have these config above, the default import won't work, and you'll continue to have to use `import * as moment from 'moment'`.
  17. Note: It is recommended to use `import moment from 'moment'`.
  18. ### Case and Program
  19. Known cases so far: [#5444](https://github.com/moment/moment/issues/5444), [#5248](https://github.com/moment/moment/issues/5348) and [#5449](https://github.com/moment/moment/issues/5449).