I split the project into several bower modules, all of which should reference the underscore.d.ts file
- bower_components
|- module_a
|- src
|- externl-commonjs.ts
| |- typings
| |- underscore
|- module_b
|- src
|- externl-commonjs.ts
|- typings
|- underscore
- src
|- externl-commonjs.ts
- typings
|- underscore
I can compile module_a and module_b myself ... but when they are in a project like the one above, I get duplicate identifier errors due to the multiple /// <referencein underscore.d.ts in each external module file.
How would you work on this and have a single source of truth for underscore.d.ts.
source
share