error TS5107: Option 'target=ES5' is deprecated and will stop functioning in TypeScript 7.0. Specify compilerOption '"ignoreDeprecations": "6.0"' to silence this error.


!!! error TS5107: Option 'target=ES5' is deprecated and will stop functioning in TypeScript 7.0. Specify compilerOption '"ignoreDeprecations": "6.0"' to silence this error.
==== modifierParenCast.ts (0 errors) ====
    let readonly: any = undefined;
    let override: any = undefined;
    let out: any = undefined;
    let declare: any = undefined;
    
    export const a = (readonly as number);
    export const b = (override as number);
    export const c = (out as number);
    export const d = (declare as number);