We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7a6ffc commit 85229ecCopy full SHA for 85229ec
Cargo.toml
@@ -2,7 +2,7 @@
2
name = "dprint-plugin-typescript"
3
description = "TypeScript code formatting plugin for dprint."
4
keywords = ["formatting", "formatter", "typescript"]
5
-version = "0.32.8"
+version = "0.32.9"
6
authors = ["David Sherret <[email protected]>"]
7
edition = "2018"
8
license = "MIT"
@@ -26,7 +26,7 @@ wasm = ["serde_json", "dprint-core/wasm"]
26
[dependencies]
27
dprint-core = { version = "0.31.0", features = ["formatting"] }
28
swc_common = "=0.10.5"
29
-swc_ecmascript = { version = "=0.13.3", features = ["parser"] }
+swc_ecmascript = { version = "=0.14.1", features = ["parser"] }
30
serde = { version = "1.0.88", features = ["derive"] }
31
serde_json = { version = "1.0", optional = true }
32
src/parsing/parser_types.rs
@@ -611,7 +611,7 @@ generate_traits![Expr, This, Array, Object, Fn, Unary, Update, Bin, Assign, Memb
611
TsNonNull, TsTypeCast, TsAs, PrivateName, OptChain, Invalid];
612
generate_traits![PropOrSpread, Spread, Prop];
613
generate_traits![Prop, Shorthand, KeyValue, Assign, Getter, Setter, Method];
614
-generate_traits![PropName, Ident, Str, Num, Computed];
+generate_traits![PropName, Ident, Str, Num, Computed, BigInt];
615
generate_traits![Pat, Ident, Array, Rest, Object, Assign, Invalid, Expr];
616
generate_traits![TsType, TsKeywordType, TsThisType, TsFnOrConstructorType, TsTypeRef, TsTypeQuery, TsTypeLit, TsArrayType, TsTupleType,
617
TsOptionalType, TsRestType, TsUnionOrIntersectionType, TsConditionalType, TsInferType, TsParenthesizedType, TsTypeOperator, TsIndexedAccessType,
0 commit comments