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.
==== arrayToLocaleStringES5.ts (0 errors) ====
    let str: string;
    const arr = [1, 2, 3];
    str = arr.toLocaleString(); // OK
    str = arr.toLocaleString('en-US'); // should be error
    str = arr.toLocaleString('en-US', { style: 'currency', currency: 'EUR' }); // should be error
    
    const dates: readonly Date[] = [new Date(), new Date()];
    str = dates.toLocaleString(); // OK
    str = dates.toLocaleString('fr'); // should be error
    str = dates.toLocaleString('fr', { timeZone: 'UTC' }); // should be error
    
    const int8Array = new Int8Array(3);
    str = int8Array.toLocaleString(); // OK
    str = int8Array.toLocaleString('en-US'); // should be error
    str = int8Array.toLocaleString('en-US', { style: 'currency', currency: 'EUR' }); // should be error
    
    const uint8Array = new Uint8Array(3);
    str = uint8Array.toLocaleString(); // OK
    str = uint8Array.toLocaleString('en-US'); // should be error
    str = uint8Array.toLocaleString('en-US', { style: 'currency', currency: 'EUR' }); // should be error
    
    const uint8ClampedArray = new Uint8ClampedArray(3);
    str = uint8ClampedArray.toLocaleString(); // OK
    str = uint8ClampedArray.toLocaleString('en-US'); // should be error
    str = uint8ClampedArray.toLocaleString('en-US', { style: 'currency', currency: 'EUR' }); // should be error
    
    const int16Array = new Int16Array(3);
    str = int16Array.toLocaleString(); // OK
    str = int16Array.toLocaleString('en-US'); // should be error
    str = int16Array.toLocaleString('en-US', { style: 'currency', currency: 'EUR' }); // should be error
    
    const uint16Array = new Uint16Array(3);
    str = uint16Array.toLocaleString(); // OK
    str = uint16Array.toLocaleString('en-US'); // should be error
    str = uint16Array.toLocaleString('en-US', { style: 'currency', currency: 'EUR' }); // should be error
    
    const int32Array = new Int32Array(3);
    str = int32Array.toLocaleString(); // OK
    str = int32Array.toLocaleString('en-US'); // should be error
    str = int32Array.toLocaleString('en-US', { style: 'currency', currency: 'EUR' }); // should be error
    
    const uint32Array = new Uint32Array(3);
    str = uint32Array.toLocaleString(); // OK
    str = uint32Array.toLocaleString('en-US'); // should be error
    str = uint32Array.toLocaleString('en-US', { style: 'currency', currency: 'EUR' }); // should be error
    
    const float32Array = new Float32Array(3);
    str = float32Array.toLocaleString(); // OK
    str = float32Array.toLocaleString('en-US'); // should be error
    str = float32Array.toLocaleString('en-US', { style: 'currency', currency: 'EUR' }); // should be error
    
    const float64Array = new Float64Array(3);
    str = float64Array.toLocaleString(); // OK
    str = float64Array.toLocaleString('en-US'); // should be error
    str = float64Array.toLocaleString('en-US', { style: 'currency', currency: 'EUR' }); // should be error
    