-
Notifications
You must be signed in to change notification settings - Fork 12.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ES6 Module were finalized #670
Comments
ES6 modules are definitely on the radar. 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. |
👍 |
👍 |
Nested modules no longer exists in ES6. What will be the future syntax for modules in TypeScript 2.0? |
see #2242 |
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: