mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
11 lines
426 B
JavaScript
11 lines
426 B
JavaScript
// Feature flags passed to require("meteor-babel").getDefaultOptions in
|
|
// tools/main-transpile-wrapper.js and tools/isopack.js.
|
|
|
|
// ES6 module syntax is enabled by default for Meteor tool code,
|
|
// implemented via CommonJS require/exports.
|
|
exports.modules = true;
|
|
|
|
// ES7 async functions and await expressions are transpiled to
|
|
// Promise.asyncApply and Promise.await, implemented via Fibers.
|
|
exports.meteorAsyncAwait = true;
|