How to generate “*.d.ts” in typescript or creates and import @types? Is there any way to create d.ts for jquery plugin or plain javascript library?
If you want to create the declaration file only, without producing other .js files, you can run the compiler with the emitDeclarationOnly option
.js
emitDeclarationOnly
tsc --emitDeclarationOnly
Here is a full list of available compiler options.