Skip to content

Ignore lazy circular deps #450

@jasonkuhrt

Description

@jasonkuhrt

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions