Fixes import of "babel-core"

Babel imports "debug/node" which causes "(SystemJS) Error loading @node/tty. Can only load node core modules in Node" https://github.com/babel/babel/blob/master/packages/babel-core/src/transformation/file/logger.js
This commit is contained in:
Kevin Kwok
2016-09-11 01:38:54 -04:00
committed by GitHub
parent 74e6df76a9
commit f6176cd967
+3
View File
@@ -7,6 +7,9 @@
"./browser.js": {
"node": "./node.js"
},
"./node.js": {
"browser": "./browser.js"
},
"fs": "@node/fs",
"net": "@node/net",
"tty": "@node/tty",