mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
closes #273 closes #814 HIR is removed from this PR, with the minifier being commented out. HIR is a wonderful idea for compiling to lower languages, but after sitting on it for a few months I found that it only adds confusion and uncertainties to both myself and future contributors. It also adds too much burden to maintainers if we plan to support more downstream tools. 1 AST is the only way.
19 lines
383 B
YAML
19 lines
383 B
YAML
A-ast:
|
|
- any: ['crates/oxc_ast/**/*']
|
|
|
|
A-cli:
|
|
- any: ['crates/oxc_cli/**/*', 'npm/**/*']
|
|
|
|
A-linter: 'crates/oxc_linter/**/*'
|
|
|
|
A-minifier: 'crates/oxc_minifier/**/*'
|
|
|
|
A-parser: 'crates/oxc_parser/**/*'
|
|
|
|
A-printer: 'crates/oxc_minifier/src/printer/**/*'
|
|
|
|
A-semantic: 'crates/oxc_semantic/**/*'
|
|
|
|
A-resolver: 'crates/oxc_resolver/**/*'
|
|
|
|
A-type-checking: 'crates/oxc_type_synthesis/**/*'
|