TypeScript/tests/baselines/reference/nodeModulesDeclarationEmitWithPackageExports(module=node12).types
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

205 lines
3.5 KiB
Plaintext

=== tests/cases/conformance/node/index.ts ===
// esm format file
import * as cjs from "package/cjs";
>cjs : typeof cjs
import * as mjs from "package/mjs";
>mjs : typeof mjs
import * as type from "package";
>type : typeof type
export const a = cjs;
>a : typeof cjs
>cjs : typeof cjs
export const b = mjs;
>b : typeof mjs
>mjs : typeof mjs
export const c = type;
>c : typeof type
>type : typeof type
import * as cjsi from "inner/cjs";
>cjsi : typeof cjsi
import * as mjsi from "inner/mjs";
>mjsi : typeof mjsi
import * as typei from "inner";
>typei : typeof typei
export const d = cjsi;
>d : typeof cjsi
>cjsi : typeof cjsi
export const e = mjsi;
>e : typeof mjsi
>mjsi : typeof mjsi
export const f = typei;
>f : typeof typei
>typei : typeof typei
=== tests/cases/conformance/node/index.mts ===
// esm format file
import * as cjs from "package/cjs";
>cjs : typeof cjs
import * as mjs from "package/mjs";
>mjs : typeof mjs
import * as type from "package";
>type : typeof type
export const a = cjs;
>a : typeof cjs
>cjs : typeof cjs
export const b = mjs;
>b : typeof mjs
>mjs : typeof mjs
export const c = type;
>c : typeof type
>type : typeof type
import * as cjsi from "inner/cjs";
>cjsi : typeof cjsi
import * as mjsi from "inner/mjs";
>mjsi : typeof mjsi
import * as typei from "inner";
>typei : typeof typei
export const d = cjsi;
>d : typeof cjsi
>cjsi : typeof cjsi
export const e = mjsi;
>e : typeof mjsi
>mjsi : typeof mjsi
export const f = typei;
>f : typeof typei
>typei : typeof typei
=== tests/cases/conformance/node/index.cts ===
// cjs format file
import * as cjs from "package/cjs";
>cjs : typeof cjs
import * as mjs from "package/mjs";
>mjs : typeof mjs
import * as type from "package";
>type : typeof type
export const a = cjs;
>a : typeof cjs
>cjs : typeof cjs
export const b = mjs;
>b : typeof mjs
>mjs : typeof mjs
export const c = type;
>c : typeof type
>type : typeof type
import * as cjsi from "inner/cjs";
>cjsi : typeof cjsi
import * as mjsi from "inner/mjs";
>mjsi : typeof mjsi
import * as typei from "inner";
>typei : typeof typei
export const d = cjsi;
>d : typeof cjsi
>cjsi : typeof cjsi
export const e = mjsi;
>e : typeof mjsi
>mjsi : typeof mjsi
export const f = typei;
>f : typeof typei
>typei : typeof typei
=== tests/cases/conformance/node/node_modules/inner/index.d.ts ===
// cjs format file
import * as cjs from "inner/cjs";
>cjs : typeof cjs
import * as mjs from "inner/mjs";
>mjs : typeof mjs
import * as type from "inner";
>type : typeof type
cjs;
>cjs : typeof cjs
mjs;
>mjs : typeof mjs
type;
>type : typeof type
export const cjsMain = true;
>cjsMain : true
>true : true
=== tests/cases/conformance/node/node_modules/inner/index.d.mts ===
// esm format file
import * as cjs from "inner/cjs";
>cjs : typeof cjs
import * as mjs from "inner/mjs";
>mjs : typeof mjs
import * as type from "inner";
>type : typeof type
cjs;
>cjs : typeof cjs
mjs;
>mjs : typeof mjs
type;
>type : typeof type
export const esm = true;
>esm : true
>true : true
=== tests/cases/conformance/node/node_modules/inner/index.d.cts ===
// cjs format file
import * as cjs from "inner/cjs";
>cjs : typeof cjs
import * as mjs from "inner/mjs";
>mjs : typeof mjs
import * as type from "inner";
>type : typeof type
cjs;
>cjs : typeof cjs
mjs;
>mjs : typeof mjs
type;
>type : typeof type
export const cjsNonmain = true;
>cjsNonmain : true
>true : true