TypeScript/tests/baselines/reference/moduleResolutionWithoutExtension3.types
Gabriela Araujo Britto 9cdbb7248b
Improve errors on module: node12 and extensionless relative imports (#46486)
* add new error + suggestions

* push down assert defined

* remove comment

* fix esm module import detection, update baselines

* add and update new tests

* fix review comments

* remove renamed baseline references

* update node modules test baselines

* fix error message, add new tests

* update old tests with new error message
2021-10-29 10:25:03 -07:00

14 lines
264 B
Plaintext

=== /src/foo.tsx ===
export function foo() {
>foo : () => string
return "";
>"" : ""
}
=== /src/bar.mts ===
// Extensionless relative path ES import in an ES module
import { foo } from "./foo"; // should error, suggest adding ".jsx"
>foo : any