TypeScript/tests/baselines/reference/declarationNotFoundPackageBundlesTypes.js
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

27 lines
472 B
TypeScript

//// [tests/cases/conformance/moduleResolution/declarationNotFoundPackageBundlesTypes.ts] ////
//// [package.json]
{
"name": "foo",
"version": "1.0.0"
}
//// [index.js]
var foo = 0;
module.exports = foo;
//// [index.d.ts]
declare const foo: any;
export = foo;
//// [other.js]
module.exports = {};
//// [index.ts]
import * as Foo from "foo";
import * as Other from "foo/other"/*1*/;
//// [index.js]
"use strict";
exports.__esModule = true;