swc/crates/swc_ecma_parser/tests/tsc/importCallExpressionInExportEqualsCJS.ts
2022-02-04 17:08:38 +09:00

9 lines
185 B
TypeScript

// @module: commonjs
// @target: esnext
// @filename: something.ts
export = 42;
// @filename: index.ts
export = async function() {
const something = await import("./something");
};