fix(config): update .smartconfig.json handling and harden bundler runtime compatibility
This commit is contained in:
@@ -4,9 +4,9 @@ const myConst: string = 'hello';
|
||||
|
||||
await smartdelay.delayFor(1000);
|
||||
|
||||
function sealed(constructor: Function) {
|
||||
Object.seal(constructor);
|
||||
Object.seal(constructor.prototype);
|
||||
function sealed(value: Function, _context: ClassDecoratorContext) {
|
||||
Object.seal(value);
|
||||
Object.seal(value.prototype);
|
||||
}
|
||||
|
||||
@sealed
|
||||
|
||||
Reference in New Issue
Block a user