fallow-graph 2.29.0

Module graph construction, resolution, and project state for the fallow TypeScript/JavaScript codebase analyzer
Documentation
1
2
3
4
5
6
7
8
9
10
//! Module graph construction and import resolution for the fallow codebase analyzer.
//!
//! This crate builds the dependency graph from parsed modules, resolves import
//! specifiers to their targets, and tracks export usage through re-export chains.

#![warn(missing_docs)]

pub mod graph;
pub mod project;
pub mod resolve;