1 dépôt
Analyzes source files concurrently across multiple CPU threads to minimize total check time.
Distinct from Parallel Processing: Distinct from Parallel Processing: focuses on concurrent analysis of source files, not general computational workload distribution.
Explore 1 awesome GitHub repository matching data & databases · Source File Processors. Refine with filters or upvote what's useful.
stc is a TypeScript type checker implemented entirely in Rust, designed to validate type correctness in TypeScript source code with native performance and memory safety. It operates as a no-emitting type validator, meaning it checks types only and does not produce JavaScript output, reducing overhead compared to a full compiler. The checker is built around a zero-false-positive design, reporting only errors that are provably certain from the type system, prioritizing correctness over speculative warnings. The tool distinguishes itself through parallel file processing, analyzing source files c
Analyzes TypeScript source files concurrently across multiple CPU threads to minimize total check time.