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.
==== other.ts (0 errors) ====
    type Experiment<Name> = {
        name: Name;
    };
    declare const createExperiment: <Name extends string>(
        options: Experiment<Name>
    ) => Experiment<Name>;
    export default createExperiment({
        name: "foo"
    });
    
==== main.ts (0 errors) ====
    import * as other2 from "./other";
    export const obj = {
        [other2.default.name]: 1
    };