== should format a number lit type ==
type t = -1;
type u = 1;
type v = 100;

[expect]
type t = -1;
type u = 1;
type v = 100;

== should format bigint literal type ==
type Test = -1n | 1n;

[expect]
type Test = -1n | 1n;
