Export Get Undefined

情况说明:

a.ts:

export const xx = "123";

b.ts:

import { xx } from "a";
console.log(xx); // got undefined

这个一般是循环引用导致的