TypeScript/tests/baselines/reference/declarationNotFoundPackageBundlesTypes.symbols
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
434 B
Plaintext

=== tests/cases/conformance/moduleResolution/index.ts ===
import * as Foo from "foo";
>Foo : Symbol(Foo, Decl(index.ts, 0, 6))
import * as Other from "foo/other"/*1*/;
>Other : Symbol(Other, Decl(index.ts, 1, 6))
=== tests/cases/conformance/moduleResolution/node_modules/foo/index.d.ts ===
declare const foo: any;
>foo : Symbol(foo, Decl(index.d.ts, 0, 13))
export = foo;
>foo : Symbol(foo, Decl(index.d.ts, 0, 13))