chainer.ts(1,24): error TS1141: String literal expected.


==== chainer.ts (1 errors) ====
    export const x: import(import("./a").LookAt).Value = "yes"; // expect outter import to fail, since b.d.ts isn't in the build
                           ~~~~~~~~~~~~~~~~~~~~
!!! error TS1141: String literal expected.
    
==== a.d.ts (0 errors) ====
    export type LookAt = "./b";
==== b.d.ts (0 errors) ====
    export type Value = "yes";