Ich habe gelesen, wie die Auflösung des TypeScript- Moduls funktioniert.
Ich habe das folgende Repository: @ ts-stack / di . Nach dem Kompilieren lautet die Verzeichnisstruktur wie folgt:
├── dist
│ ├── annotations.d.ts
│ ├── annotations.js
│ ├── index.d.ts
│ ├── index.js
│ ├── injector.d.ts
│ ├── injector.js
│ ├── profiler.d.ts
│ ├── profiler.js
│ ├── providers.d.ts
│ ├── providers.js
│ ├── util.d.ts
│ └── util.js
├── LICENSE
├── package.json
├── README.md
├── src
│ ├── annotations.ts
│ ├── index.ts
│ ├── injector.ts
│ ├── profiler.ts
│ ├── providers.ts
│ └── util.ts
└── tsconfig.json
In meine package.json habe ich geschrieben "main": "dist/index.js"
.
In Node.js funktioniert alles gut, aber TypeScript:
import {Injector} from '@ts-stack/di';
Es konnte keine Deklarationsdatei für das Modul '@ ts-stack / di' gefunden werden. '/path/to/node_modules/@ts-stack/di/dist/index.js' hat implizit einen 'any'-Typ.
Und doch, wenn ich wie folgt importiere, dann funktioniert alles:
import {Injector} from '/path/to/node_modules/@ts-stack/di/dist/index.js';
Was mache ich falsch?
npm install @types/node --save-dev