File: moduleResolutionWithModule%28module%3Dnode16%2Cmoduleresolution%3Dnode%29.errors.txt

package info (click to toggle)
node-typescript 4.8.4%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 523,068 kB
  • sloc: javascript: 1,735,777; makefile: 7; sh: 1
file content (16 lines) | stat: -rw-r--r-- 630 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
tests/cases/compiler/index.ts(1,20): error TS2307: Cannot find module 'pkg' or its corresponding type declarations.


==== tests/cases/compiler/node_modules/pkg/package.json (0 errors) ====
    {
        "name": "pkg",
        "version": "0.0.1",
        "exports": "./entrypoint.js"
    }
==== tests/cases/compiler/node_modules/pkg/entrypoint.d.ts (0 errors) ====
    export declare function thing(): void;
==== tests/cases/compiler/index.ts (1 errors) ====
    import * as p from "pkg";
                       ~~~~~
!!! error TS2307: Cannot find module 'pkg' or its corresponding type declarations.
    p.thing();