1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
=== tests/cases/conformance/node/index.ts ===
// esm format file
import * as type from "#type";
>type : Symbol(type, Decl(index.ts, 1, 6))
type;
>type : Symbol(type, Decl(index.ts, 1, 6))
=== tests/cases/conformance/node/index.mts ===
// esm format file
import * as type from "#type";
>type : Symbol(type, Decl(index.mts, 1, 6))
type;
>type : Symbol(type, Decl(index.mts, 1, 6))
=== tests/cases/conformance/node/index.cts ===
// esm format file
import * as type from "#type";
>type : Symbol(type, Decl(index.cts, 1, 6))
type;
>type : Symbol(type, Decl(index.cts, 1, 6))
|