I have a constant that is empty after being built with tsc and I don't know why or how I can fix this...
Here's my const:
// colors.ts
export declare const Colors: {
Default: 0x000000;
White: 0xffffff;
Aqua: 0x1abc9c;
Green: 0x57f287;
}
And my built version of it:
// colors.js
export {};
Why does this happen and how do I fix it?
