You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 30, 2019. It is now read-only.
Linking from bundles (tsd link) is great feature, but there are little improvement needed - install typings dependencies from linked module. For example - my library uses expressjs, and re-exports some types from express (function that receives express.Request as param for example). Internally, this library uses express.d.ts typings from tsd, but it can't export this typings up to application, coz it can use express too, and there will be conflict (due to express.d.ts will placed in different directories in this case). So, library user must install deps (express) manually. It would be great, if "typescript" section of package.json (or bower) will have "dependencies" array (or something like) with names of deps, which can be installed to project during "tsd link"
Thanks for you project and time
Linking from bundles (tsd link) is great feature, but there are little improvement needed - install typings dependencies from linked module. For example - my library uses expressjs, and re-exports some types from express (function that receives express.Request as param for example). Internally, this library uses express.d.ts typings from tsd, but it can't export this typings up to application, coz it can use express too, and there will be conflict (due to express.d.ts will placed in different directories in this case). So, library user must install deps (express) manually. It would be great, if "typescript" section of package.json (or bower) will have "dependencies" array (or something like) with names of deps, which can be installed to project during "tsd link"
Thanks for you project and time