Open
Description
The @types for createjs seem to be formatted as a namespace instead of a module. If you import as below:
import 'createjs'
You can then access for example:
createjs.Stage
Since the @types (the Typescript typings) are exporting a namespace it then becomes sticky when trying to load the module via a module loader such as SystemJs.
Any comments on how createjs should be imported and loaded would be appreciated.