Open
Description
When a user imports a type alias like
// ./a.ts
export type Foo = number | string | symbol;
We should try to print out Foo
in error messages like in
// ./b.ts
import { Foo } from "./a.js"
let x: Foo = true;
and in declaration emit like in
// ./c.ts
import { Foo } from "./a.js"
function f(x: Foo) {
return x;
}