typescript-class-helpers
Version:
Usefull helper to have in your typescript project
15 lines (13 loc) • 516 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.ERROR_MSG_CLASS_WITHOUT_DECORATOR = void 0;
exports.ERROR_MSG_CLASS_WITHOUT_DECORATOR = `[typescript-class-helpers][getClassName(...)](PRODUCTION MODE ERROR)
Please use decoartor @CLASSNAME for each entity or controller
This is preventing class name problem in minified code.
import { CLASS } from 'typescript-class-helpers';
@CLASS.NAME('ExampleClass')
class ExampleClass {
...
}
`;
//# sourceMappingURL=errors-messages.js.map
;