Export Get Undefined

a.ts:

export const xx = "123";

b.ts:

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

This is usually caused by circular references