moment-module icon indicating copy to clipboard operation
moment-module copied to clipboard

No type support for .tz

Open e-lobo opened this issue 4 years ago • 1 comments

No typescript support when we activate timezone support.

e-lobo avatar Aug 30 '20 10:08 e-lobo

Hey, Sorry for the late response, add moment-timezone to types array inside tsconfig.json file

{
  // ...
  "compilerOptions": {
    // ...
    "types": [
      "@nuxt/types",
      "@nuxtjs/moment",
      "moment-timezone"
    ]
  }
}

farnabaz avatar Feb 03 '21 11:02 farnabaz