error TS5107: Option 'target=ES5' is deprecated and will stop functioning in TypeScript 7.0. Specify compilerOption '"ignoreDeprecations": "6.0"' to silence this error.
errorsOnImportedSymbol_1.ts(2,13): error TS2693: 'Sammy' only refers to a type, but is being used as a value here.
errorsOnImportedSymbol_1.ts(3,9): error TS2693: 'Sammy' only refers to a type, but is being used as a value here.


!!! error TS5107: Option 'target=ES5' is deprecated and will stop functioning in TypeScript 7.0. Specify compilerOption '"ignoreDeprecations": "6.0"' to silence this error.
==== errorsOnImportedSymbol_1.ts (2 errors) ====
    import Sammy = require("./errorsOnImportedSymbol_0");
    var x = new Sammy.Sammy();
                ~~~~~
!!! error TS2693: 'Sammy' only refers to a type, but is being used as a value here.
    var y = Sammy.Sammy(); 
            ~~~~~
!!! error TS2693: 'Sammy' only refers to a type, but is being used as a value here.
    
    
==== errorsOnImportedSymbol_0.ts (0 errors) ====
    interface Sammy {
        new (): any;
        (): number;
    }
    export = Sammy;
    