Having trouble implementing SoundJS (from the createJS framework) in my TypeScript project using webpack 2.
In my vendors.ts file, I have the following import:
import "soundjs";
Among other successful imports.
The @types definitions installed via npm are for "soundjs", but the npm package itself is empty. To workaround this, I need to use a different npm package called "createjs-soundjs" which is causing a resolution issue.
During compilation with webpack, I receive the error message: "Module not found: Error: Can't resolve 'soundjs' in '[path to the folder containing vendor.ts]'
Any tips on how to configure webpack 2 to correctly resolve to the createjs-soundjs package?
Appreciate your assistance :)