| 123456789101112131415161718192021222324252627282930 | exports.config = api => {  const config = {    root: true,    env: { node: true },    extends: ['plugin:vue/essential'],    rules: {      'no-console': makeJSOnlyValue(`process.env.NODE_ENV === 'production' ? 'error' : 'off'`),      'no-debugger': makeJSOnlyValue(`process.env.NODE_ENV === 'production' ? 'error' : 'off'`)    }  }  if (!api.hasPlugin('typescript')) {    config.parserOptions = {      parser: 'babel-eslint'    }  }  return config}// __expression is a special flag that allows us to customize stringification// output when extracting configs into standalone filesfunction makeJSOnlyValue (str) {  const fn = () => {}  fn.__expression = str  return fn}const baseExtensions = ['.js', '.jsx', '.vue']exports.extensions = api => api.hasPlugin('typescript')  ? baseExtensions.concat('.ts', '.tsx')  : baseExtensions
 |