@types, npm and jspm.what is the best way to use npm @types instead of typings or tsd, alongside with jspm?
typings then reference them in plugin-typescript?@RyanCavanaugh ?
// cc: @frankwallis
did anybody have an answer to this?
Related https://github.com/Microsoft/TypeScript/issues/6012
I think currently the best workaround is to install the package using both npm and jspm and manually keep their versions in sync. Other approachs:
https://github.com/alexisvincent/systemjs-tools/blob/master/docs/features.md#node_modules-package-resolution-beta
https://github.com/Microsoft/TypeScript/issues/6012#issuecomment-277549376
right now I'm installing the types using npm, setting tsconfig.json to output "module": "system" and then doing a jspm bundle on the resulting transpiled js files. not pretty, but works without duplication
@jrwpatterson I know it's not what you're looking for but my solution was to just stop using systemjs/jspm and use webpack instead.