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>
34 lines
915 B
TOML
34 lines
915 B
TOML
[package]
|
|
name = "oxc_codegen"
|
|
version = "0.16.3"
|
|
publish = true
|
|
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 = ["/examples", "/src"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
oxc_ast = { workspace = true }
|
|
oxc_span = { workspace = true }
|
|
oxc_allocator = { workspace = true }
|
|
oxc_syntax = { workspace = true }
|
|
oxc_sourcemap = { workspace = true }
|
|
bitflags = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
daachorse = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
[dev-dependencies]
|
|
oxc_parser = { workspace = true }
|
|
base64 = { workspace = true }
|