Basically, I have the same question as asked here:
I have developed a NPM Package (typed-lexer) that properly ships its d.ts file (with corresponding entries in the package.json
file).
Consuming the package in a plain node js app via npm install and tsc --init works fine - both the IDE (in my case Visual Studio Code) and the compiler are able to locate my typed-lexer's type definition file.
However, it works everything else than fine when I install my package via jspm.
As the d.ts file is an external declaration file (there is no declare module
in it) I cannot just <reference ... />
it.
Installing the package both via jspm and npm helps the IDE but not the browser where the typescript files are compiled.
As the linked question has no real answer and typescript 1.8 has been released now, I wonder what I can do about this. I am using jspm 0.17.0-beta.12 and typescript 1.9.0.