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.
==== asyncAwait_es5.ts (0 errors) ====
    type MyPromise<T> = Promise<T>;
    declare var MyPromise: typeof Promise;
    declare var p: Promise<number>;
    declare var mp: MyPromise<number>;
    
    async function f0() { }
    async function f1(): Promise<void> { }
    async function f3(): MyPromise<void> { }
    
    let f4 = async function() { }
    let f5 = async function(): Promise<void> { }
    let f6 = async function(): MyPromise<void> { }
    
    let f7 = async () => { };
    let f8 = async (): Promise<void> => { };
    let f9 = async (): MyPromise<void> => { };
    let f10 = async () => p;
    let f11 = async () => mp;
    let f12 = async (): Promise<number> => mp;
    let f13 = async (): MyPromise<number> => p;
    
    let o = {
    	async m1() { },
    	async m2(): Promise<void> { },
    	async m3(): MyPromise<void> { }
    };
    
    class C {
    	async m1() { }
    	async m2(): Promise<void> { }
    	async m3(): MyPromise<void> { }
    	static async m4() { }
    	static async m5(): Promise<void> { }
    	static async m6(): MyPromise<void> { }
    }
    
    namespace M {
    	export async function f1() { }
    }
    
    async function f14() {
        block: {
            await 1;
            break block;
        }
    }