TypeScript/tests/baselines/reference/nodeModulesExportsSpecifierGenerationDirectory(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

37 lines
795 B
TypeScript

//// [tests/cases/conformance/node/nodeModulesExportsSpecifierGenerationDirectory.ts] ////
//// [index.ts]
// esm format file
import { Thing } from "inner/other";
export const a = (await import("inner/index.js")).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]
export const a = (await import("inner/index.js")).x();
//// [index.d.ts]
export declare const a: import("inner/other.js").Thing;