123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.normalizeBabelParseConfig = normalizeBabelParseConfig;
- exports.normalizeBabelParseConfigSync = normalizeBabelParseConfigSync;
- function asyncGeneratorStep(n, t, e, r, o, a, c) { try { var i = n[a](c), u = i.value; } catch (n) { return void e(n); } i.done ? t(u) : Promise.resolve(u).then(r, o); }
- function _asyncToGenerator(n) { return function () { var t = this, e = arguments; return new Promise(function (r, o) { var a = n.apply(t, e); function _next(n) { asyncGeneratorStep(a, r, o, _next, _throw, "next", n); } function _throw(n) { asyncGeneratorStep(a, r, o, _next, _throw, "throw", n); } _next(void 0); }); }; }
- const babel = require("./babel-core.cjs");
- const semver = require("semver");
- const ESLINT_VERSION = require("../utils/eslint-version.cjs");
- function getParserPlugins(babelOptions) {
- var _babelOptions$parserO, _babelOptions$parserO2;
- const babelParserPlugins = (_babelOptions$parserO = (_babelOptions$parserO2 = babelOptions.parserOpts) == null ? void 0 : _babelOptions$parserO2.plugins) != null ? _babelOptions$parserO : [];
- const estreeOptions = {
- classFeatures: ESLINT_VERSION >= 8
- };
- for (const plugin of babelParserPlugins) {
- if (Array.isArray(plugin) && plugin[0] === "estree") {
- Object.assign(estreeOptions, plugin[1]);
- break;
- }
- }
- return [["estree", estreeOptions], ...babelParserPlugins];
- }
- function normalizeParserOptions(options, version) {
- var _options$allowImportE, _options$ecmaFeatures2, _options$ecmaFeatures3;
- if (options.sourceType === "commonjs" && !semver.satisfies(version, ">=7.28.0")) {
- var _options$ecmaFeatures;
- options.sourceType = "script";
- options.ecmaFeatures = Object.assign({}, (_options$ecmaFeatures = options.ecmaFeatures) != null ? _options$ecmaFeatures : {}, {
- globalReturn: true
- });
- }
- return Object.assign({
- sourceType: options.sourceType,
- filename: options.filePath
- }, options.babelOptions, {
- parserOpts: Object.assign({}, {
- allowImportExportEverywhere: (_options$allowImportE = options.allowImportExportEverywhere) != null ? _options$allowImportE : false,
- allowSuperOutsideMethod: true
- }, options.sourceType !== "commonjs" ? {
- allowReturnOutsideFunction: (_options$ecmaFeatures2 = (_options$ecmaFeatures3 = options.ecmaFeatures) == null ? void 0 : _options$ecmaFeatures3.globalReturn) != null ? _options$ecmaFeatures2 : true
- } : {}, options.babelOptions.parserOpts, {
- plugins: getParserPlugins(options.babelOptions),
- attachComment: false,
- ranges: true,
- tokens: true
- }),
- caller: Object.assign({
- name: "@babel/eslint-parser"
- }, options.babelOptions.caller)
- });
- }
- function validateResolvedConfig(config, options, parseOptions) {
- if (config !== null) {
- if (options.requireConfigFile !== false) {
- if (!config.hasFilesystemConfig()) {
- let error = `No Babel config file detected for ${config.options.filename}. Either disable config file checking with requireConfigFile: false, or configure Babel so that it can find the config files.`;
- if (config.options.filename.includes("node_modules")) {
- error += `\nIf you have a .babelrc.js file or use package.json#babel, keep in mind that it's not used when parsing dependencies. If you want your config to be applied to your whole app, consider using babel.config.js or babel.config.json instead.`;
- }
- throw new Error(error);
- }
- }
- if (config.options) return config.options;
- }
- return getDefaultParserOptions(parseOptions);
- }
- function getDefaultParserOptions(options) {
- return Object.assign({
- plugins: []
- }, options, {
- babelrc: false,
- configFile: false,
- browserslistConfigFile: false,
- ignore: null,
- only: null
- });
- }
- function normalizeBabelParseConfig(_x) {
- return _normalizeBabelParseConfig.apply(this, arguments);
- }
- function _normalizeBabelParseConfig() {
- _normalizeBabelParseConfig = _asyncToGenerator(function* (options) {
- const parseOptions = normalizeParserOptions(options, babel.version);
- const config = yield babel.loadPartialConfigAsync(parseOptions);
- return validateResolvedConfig(config, options, parseOptions);
- });
- return _normalizeBabelParseConfig.apply(this, arguments);
- }
- function normalizeBabelParseConfigSync(options) {
- const parseOptions = normalizeParserOptions(options, babel.version);
- const config = babel.loadPartialConfigSync(parseOptions);
- return validateResolvedConfig(config, options, parseOptions);
- }
- //# sourceMappingURL=configuration.cjs.map
|