Module ID's where not always correctly resolved and stored. I fixed that by making sure that only the base name of the module is used to store the module. For example is ./test/test.js transformed into test. Or test/test tranformed into test.
That was needed to use IMD with the polymer+typescript (+module = AMD)
Module ID's where not always correctly resolved and stored. I
fixed
that by making sure that only the base name of the module is used to store the module. For example is./test/test.js
transformed intotest
. Ortest/test
tranformed intotest
. That was needed to use IMD with the polymer+typescript (+module = AMD)