error TS-1: Pre-emit (0) and post-emit (1) diagnostic counts do not match! This can indicate that a semantic _error_ was added by the emit resolver - such an error may not be reflected on the command line or in the editor, but may be captured in a baseline here!


!!! error TS-1: Pre-emit (0) and post-emit (1) diagnostic counts do not match! This can indicate that a semantic _error_ was added by the emit resolver - such an error may not be reflected on the command line or in the editor, but may be captured in a baseline here!
!!! related TS-1: The excess diagnostics are:
!!! related TS2708 exportImportNonInstantiatedModule.ts:6:24: Cannot use namespace 'A' as a value.
==== exportImportNonInstantiatedModule.ts (0 errors) ====
    namespace A {
        export interface I { x: number }
    }
    
    namespace B {
        export import A1 = A
        
    }
    
    var x: B.A1.I = { x: 1 };