mirror of
https://github.com/danbulant/oxc
synced 2026-05-25 12:51:57 +00:00
Move `BabelOptions` to Transformer. The `output.json` is a standard babel configuration. We can reuse BabelOptions to read [babel.config.json](https://babeljs.io/docs/configuration#babelconfigjson) or our configuration(maybe oxc.config.json) The current `from_babel_options` implementation is copied from the `transform_options` in `test_case.rs`, which I'll completely reimplement next
35 lines
866 B
TOML
35 lines
866 B
TOML
[package]
|
|
name = "oxc_transform_conformance"
|
|
version = "0.0.0"
|
|
publish = false
|
|
authors.workspace = true
|
|
description.workspace = true
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
keywords.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[[bin]]
|
|
name = "oxc_transform_conformance"
|
|
test = false
|
|
|
|
[dependencies]
|
|
oxc_span = { workspace = true }
|
|
oxc_allocator = { workspace = true }
|
|
oxc_parser = { workspace = true }
|
|
oxc_codegen = { workspace = true }
|
|
oxc_transformer = { workspace = true }
|
|
oxc_tasks_common = { workspace = true }
|
|
oxc_diagnostics = { workspace = true }
|
|
|
|
walkdir = { workspace = true }
|
|
pico-args = { workspace = true }
|
|
indexmap = { workspace = true }
|
|
serde_json = { workspace = true }
|