moment-module
moment-module copied to clipboard
No type support for .tz
No typescript support when we activate timezone support.
Hey,
Sorry for the late response, add moment-timezone
to types
array inside tsconfig.json
file
{
// ...
"compilerOptions": {
// ...
"types": [
"@nuxt/types",
"@nuxtjs/moment",
"moment-timezone"
]
}
}