You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
so, since Typescript uses it's own type of import / require, will it be able to do import * from 'lib';, import {a, b} from 'lib'; or import * as lib from 'lib';, export default any time soon?
The text was updated successfully, but these errors were encountered:
Our first set of ES6 features we're currently looking at are ES6 classes, destructing (and tuples), for...of, spread, and template strings. These are all getting us to the ultimate goal of being a superset of ES6.
According to Dr. Axel Rauschmayer the modules keywords and functionality proposal are considered final
http://www.2ality.com/2014/09/es6-modules-final.html
so, since Typescript uses it's own type of import / require, will it be able to do
import * from 'lib';
,import {a, b} from 'lib';
orimport * as lib from 'lib';
,export default
any time soon?The text was updated successfully, but these errors were encountered: