Reading the Ghost code, CMS platform based on NodeJS I found a file with the following statement:
import Ember from 'ember';
import Resolver from 'ember/resolver';
import loadInitializers from 'ember/load-initializers';
import 'ghost/utils/link-component';
import 'ghost/utils/text-field';
import config from './config/environment';
Searching the internet I've already found something about being ES6. But it is an application that is being used in production, environment not very favorable to experiments like ES6. Now comes the doubts
Do they use any external library or is it because of an already active feature that makes ES6 possible?
PS: The ghost uses Ember as we can already see in this import and the file if you want to consult is this one, code for Ghost on Github