diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-05-26 15:41:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-26 15:41:00 +0200 |
commit | f462f7fe54d59b2d56ffbb03ca8467ce93096817 (patch) | |
tree | 0c1a0541ef6eb94117f817be12339fb1e433f310 /cli/tests | |
parent | 9090023c33de7b64ae41425db71c9ab4d5b1237f (diff) |
fix: parsing of JSX and TSX in SWC (#5870)
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/ts_with_generic.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/tests/ts_with_generic.ts b/cli/tests/ts_with_generic.ts new file mode 100644 index 000000000..aa83e73b9 --- /dev/null +++ b/cli/tests/ts_with_generic.ts @@ -0,0 +1,3 @@ +/* eslint-disable */ + +const foo = { delete<S>() {} }; |