Working on an angular2 project, I recently created aliases for modules using System.js. For example:
map: {
'%cool_modules%' : prodFolderName + '/modules',
}
However, when attempting to import {MyModule} from '%cool_modules%', I encountered an error stating: typescript: can't find module %cool_modules%
The same issue arose with @angular/core, rx/Obserable, and more.
Is there a way to resolve this problem? Thank you