standard-things / esm

Tomorrow's ECMAScript modules today!
Other
5.26k stars 146 forks source link

is esm es6 to es5 JavaScript compiler? #830

Closed mylastore closed 5 years ago

mylastore commented 5 years ago

I am a bit confuse is esm es6 to es5 JavaScript compiler? ,since it says esm is babel-less.

dnalborczyk commented 5 years ago

esm is mainly focusing on parsing and loading ES6 modules (import/export) including interoperability with CommonJS modules (require/module.export/export).

is esm es6 to es5 JavaScript compiler

to a certain degree you could see it that way. although everything happens in the background and you won't see the transpiled/compiled output.