i have code like the following ->
import {SOME_ENUM} from './enums'
export MY_ENUM {
A = SOME_ENUM
B
C
}
this doesn't work and when i compile i get error
const enum member initializers can only contain literal values and other computed enum values I guess because I am importing enum from another file which works fine when using tsc to compile but i need to bundle into single file for web not just compile files into js. i have "preserveConstEnums": false and "isolatedModules": false in tsconfig.json
i need all enums to be inlined.
i have code like the following ->
this doesn't work and when i compile i get error
const enum member initializers can only contain literal values and other computed enum valuesI guess because I am importing enum from another file which works fine when usingtscto compile but i need to bundle into single file for web not just compile files into js. i have"preserveConstEnums": falseand"isolatedModules": falsein tsconfig.jsoni need all enums to be inlined.