TypeScript/tests/baselines/reference/nodeModulesImportResolutionNoCycle(module=node12).symbols

25 lines
600 B
Plaintext
Raw Normal View History

=== 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))