TypeScript/tests/baselines/reference/declarationNotFoundPackageBundlesTypes.types
Gabriela Araujo Britto 84b057828e
Fix incorrect suggestion for package that bundles types (#45507)
* Fix incorrect suggestion for package that bundles types

* determine if a package ships types from its files

* update new error message
2021-08-20 11:12:34 -07:00

15 lines
306 B
Plaintext

=== tests/cases/conformance/moduleResolution/index.ts ===
import * as Foo from "foo";
>Foo : any
import * as Other from "foo/other"/*1*/;
>Other : any
=== tests/cases/conformance/moduleResolution/node_modules/foo/index.d.ts ===
declare const foo: any;
>foo : any
export = foo;
>foo : any