TypeScript/tests/baselines/reference/nodeModulesSynchronousCallErrors(module=node12).symbols
Wesley Wigham 586b0d5011
moduleResolution: node12 support (#45884)
* Initial support for module: node12

* Add allowJs and declaration emit enabled tests

* Fix typos

* cts, mts, cjs, mjs, etc extension support

* Fix watch of files whose intepretation changes due to a package.json update

* Minor PR feedback

* Adjust error message

* Initial import/export/self-name support

* Accept new error codes

* TypesVersions support in export/import map conditions

* Fix import suggestion and autoimport default extensions under new resolution modes

* Add tests for import maps non-relative name lookup feature

* Fix isDeclarationFileName for .d.mts and .d.cts

* Preserve new extensions when generating module specifiers

* Fix spurious implict any suggestion caused by file ordering bug and optimize import name format detection by relying on parents being set

* Fix a bunch of incremental bugs that dont repro under fourslash for some reason

* Accept updated baseline

* Always include extensions on completions for cjs/mjs style imports

* String completion relative import suggestions respect the mode of the import when choosing if they provide extensions

* Style feedback

* Change diagnostic case
2021-09-24 14:25:59 -07:00

59 lines
1.7 KiB
Plaintext

=== tests/cases/conformance/node/subfolder/index.ts ===
// cjs format file
import {h} from "../index.js";
>h : Symbol(h, Decl(index.ts, 1, 8))
import mod = require("../index.js");
>mod : Symbol(mod, Decl(index.ts, 1, 30))
import {f as _f} from "./index.js";
>f : Symbol(f, Decl(index.ts, 4, 36))
>_f : Symbol(_f, Decl(index.ts, 3, 8))
import mod2 = require("./index.js");
>mod2 : Symbol(mod2, Decl(index.ts, 3, 35))
export async function f() {
>f : Symbol(f, Decl(index.ts, 4, 36))
const mod3 = await import ("../index.js");
>mod3 : Symbol(mod3, Decl(index.ts, 6, 9))
>"../index.js" : Symbol(mod, Decl(index.ts, 0, 0))
const mod4 = await import ("./index.js");
>mod4 : Symbol(mod4, Decl(index.ts, 7, 9))
>"./index.js" : Symbol(mod2, Decl(index.ts, 0, 0))
h();
>h : Symbol(h, Decl(index.ts, 1, 8))
}
=== tests/cases/conformance/node/index.ts ===
// esm format file
import {h as _h} from "./index.js";
>h : Symbol(h, Decl(index.ts, 4, 46))
>_h : Symbol(_h, Decl(index.ts, 1, 8))
import mod = require("./index.js");
>mod : Symbol(mod, Decl(index.ts, 1, 35))
import {f} from "./subfolder/index.js";
>f : Symbol(f, Decl(index.ts, 3, 8))
import mod2 = require("./subfolder/index.js");
>mod2 : Symbol(mod2, Decl(index.ts, 3, 39))
export async function h() {
>h : Symbol(h, Decl(index.ts, 4, 46))
const mod3 = await import ("./index.js");
>mod3 : Symbol(mod3, Decl(index.ts, 6, 9))
>"./index.js" : Symbol(mod, Decl(index.ts, 0, 0))
const mod4 = await import ("./subfolder/index.js");
>mod4 : Symbol(mod4, Decl(index.ts, 7, 9))
>"./subfolder/index.js" : Symbol(mod2, Decl(index.ts, 0, 0))
f();
>f : Symbol(f, Decl(index.ts, 3, 8))
}