© 2026 Hedgehog Software, LLC
index.ts
import A from "a.ts"; import B from "b.ts"; ... const mapping = { "a": A, "b": B, ... };
a.ts
import B from "b.ts"; const A = { "something": B; ... } export default A;
__WEBPACK_DEFAULT_EXPORT__
Cannot access 'B' before initialization