Describe the bug
dprint-plugin-typescript version: 0.95.13
Input Code
declare function getType<T>(value: T): string;
const jsx = <Tag>{(<T>(value: T) => getType(value))(value)}</Tag>;
Expected Output
declare function getType<T>(value: T): string;
const jsx = <Tag>{(<T>(value: T) => getType(value))(value)}</Tag>;
Actual Output
Unexpected token `Tag`. Expected jsx identifier at file:///file.tsx:3:14
const jsx = <Tag>{(<T>(value: T) => getType(value))(value)}</Tag>;
~~~
Describe the bug
dprint-plugin-typescript version: 0.95.13
Input Code
Expected Output
Actual Output