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 acceptableAlias1.ts:4:23: Cannot use namespace 'N' as a value.
==== acceptableAlias1.ts (0 errors) ====
    namespace M {
        export namespace N {
        }
        export import X = N;
    }
    
    import r = M.X;