Pattern: Use of const enum
Issue: -
const enum
in TypeScript is incompatible with bundlers and isolatedModules mode. The values are inlined at use sites, which can lead to importing nonexistent values after bundling.
Example of incorrect code:
const enum Direction {
Up,
Down,
Left,
Right
}
Example of correct code:
enum Direction {
Up,
Down,
Left,
Right
}