swc/crates/swc_ecma_parser/tests/tsc/moduleResolutionWithoutExtension4.ts

13 lines
288 B
TypeScript
Raw Normal View History

// @moduleResolution: nodenext
// @module: nodenext
// @jsx: react
// @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 ".js"