mirror of
https://github.com/danbulant/oxc
synced 2026-05-25 12:51:57 +00:00
## [0.16.3] - 2024-07-02 ### Features -b257d53linter: Support report `@typescript-eslint/consistent-type-imports` (#3895) (mysteryven) ### Bug Fixes -23038adcodegen: Print `TSFunctionType` inside `TSTypeAssertion` (#3999) (Boshen) -d995f94semantic: Resolve reference incorrectly when a parameter references a parameter that hasn't been defined yet (#4004) (Dunqing) -bdee156transformer/typescript: `declare class` incorrectly preserved as runtime class (#3997) (Dunqing) -a50ce3dtransformer/typescript: Missing initializer for class constructor arguments with `private` and `protected` modifier (#3996) (Dunqing) ### Refactor -0fe22a8ast: Reorder fields to reflect their visit order. (#3994) (rzvxa) -d0eac46parser: Use function instead of trait to parse normal lists (#4003) (Boshen) Co-authored-by: Boshen <Boshen@users.noreply.github.com>
32 lines
754 B
TOML
32 lines
754 B
TOML
[package]
|
|
name = "oxc_sourcemap"
|
|
version = "0.16.3"
|
|
authors.workspace = true
|
|
description.workspace = true
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
keywords.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
categories.workspace = true
|
|
include = ["/src"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
rustc-hash = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
base64-simd = { workspace = true }
|
|
cfg-if = { workspace = true }
|
|
|
|
rayon = { workspace = true, optional = true }
|
|
|
|
[features]
|
|
default = []
|
|
concurrent = ["dep:rayon"]
|