mirror of
https://github.com/danbulant/oxc
synced 2026-05-25 04:42:10 +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
22 lines
423 B
TOML
22 lines
423 B
TOML
[package]
|
|
name = "oxc_tasks_common"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
test = false
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
console = { workspace = true }
|
|
|
|
project-root = { workspace = true }
|
|
similar = { workspace = true }
|
|
|
|
ureq = { workspace = true, features = ["tls", "json"] }
|
|
url = { workspace = true }
|