typescript has not support decorators in enum yet: microsoft/TypeScript#3279 (comment)
so we need some temporary solution:
Note: It is necessary to add the setting in tsconfig.json:
{
"compilerOptions": {
"experimentalDecorators": true,
... // other setting
}
}
demo url:
https://poerlang.github.io/typescript-enum-class-decorators/