TypeScript/tests/cases/compiler/moduleResolution_packageJson_yesAtPackageRoot_fakeScopedPackage.ts
Andy 2cb0403e2d Support 'package.json' not in package root (#19133)
* Support 'package.json' not in package root

* Test "foo/@bar"

* More tests, and don't use "types" from the root package.json if not loading the root module
2017-10-16 13:02:15 -07:00

17 lines
476 B
TypeScript

// @noImplicitReferences: true
// @traceResolution: true
// Copy of `moduleResolution_packageJson_notAtPackageRoot` with `foo/@bar` instead of `foo/bar`. Should behave identically.
// @Filename: /node_modules/foo/@bar/index.js
not read
// @Filename: /node_modules/foo/package.json
{ "name": "foo", "version": "1.2.3", "types": "types.d.ts" }
// @Filename: /node_modules/foo/types.d.ts
export const x = 0;
// @Filename: /a.ts
import { x } from "foo/@bar";