12345678910111213141516 |
- module.exports = {
- "parser": "babel-eslint",
- "extends": 'umi',
- "parserOptions": {
- "ecmaVersion": 2019,
- "sourceType": "module",
- "impliedStrict": true,
- "ecmaFeatures": {
- "jsx": true,
- "impliedStrict": true,
- "globalReturn": false,
- "experimentalObjectRestSpread": true,
- "legacyDecorators": true
- }
- }
- };
|