-
Notifications
You must be signed in to change notification settings - Fork 342
Open
Description
Hey, I would like to ignore lazy circ deps, meaning circ deps where exports of either module are only using one another within some scope below the module level (e.g. typically a function!).
// a.ts
export * as A from './aa.ts'
// aa.ts
import { B } from './b.ts'
export const apple = () => B.bee()
// b.ts
export * as B from './bb.ts'
// bb.ts
import { A } from './a.ts'
export const bee = () => A.apple()I want the above for example to be considered fine.
Metadata
Metadata
Assignees
Labels
No labels