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

13 lines
292 B
TypeScript

// @moduleResolution: nodenext
// @module: nodenext
// @jsx: preserve
// @filename: /src/foo.tsx
export function foo() {
return "";
}
// @filename: /src/bar.mts
// Extensionless relative path ES import in an ES module
import { foo } from "./foo"; // should error, suggest adding ".jsx"