TypeScript/tests/baselines/reference/nodeModulesExportsBlocksSpecifierResolution(module=node12).js
Wesley Wigham a02a7ab8e9
Follow and respect export maps when generating module specifiers (#46159)
* Follow and respect export maps when generating module specifiers

* Type baseline updates from master merge
2021-10-01 13:54:07 -07:00

31 lines
680 B
TypeScript

//// [tests/cases/conformance/node/nodeModulesExportsBlocksSpecifierResolution.ts] ////
//// [index.ts]
// esm format file
import { Thing } from "inner/other";
export const a = (await import("inner")).x();
//// [index.d.ts]
// esm format file
export { x } from "./other.js";
//// [other.d.ts]
// esm format file
export interface Thing {}
export const x: () => Thing;
//// [package.json]
{
"name": "package",
"private": true,
"type": "module",
"exports": "./index.js"
}
//// [package.json]
{
"name": "inner",
"private": true,
"type": "module",
"exports": "./index.js"
}
//// [index.js]
export const a = (await import("inner")).x();