package.lib.get-option-specific-excludes.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of preset-env Show documentation
Show all versions of preset-env Show documentation
A Babel preset for each environment.
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = _default;
const defaultExcludesForLooseMode = ["transform-typeof-symbol"];
function _default({
loose
}) {
return loose ? defaultExcludesForLooseMode : null;
}
//# sourceMappingURL=get-option-specific-excludes.js.map