Open rksm opened 8 years ago
Steps to reproduce:
foo.js
import Bar from "./bar.js"
bar.js
export default class Bar {}
Bar
Issue seems to be that no SystemJS module record gets created
Steps to reproduce:
foo.js
add import for non-existent moduleimport Bar from "./bar.js"
bar.js
withexport default class Bar {}
foo.js
. expected:Bar
is defined but it isn't right now