// eslint-disable-next-line no-undef module.exports = { // If the line below is commented out, the eslint default parser is used, // and the parserOptions.ecmaVersion becomes meaningful; it must be incremented // to a value greater than 2024 to parse the entire test.js file. // When the babel eslint-parser is used, the ecmaVersion option is ignored. parser: "@babel/eslint-parser", parserOptions: { ecmaVersion: 2017, requireConfigFile: false, babelOptions: { plugins: [["@babel/plugin-proposal-decorators", { version: "2023-11" }]], }, }, extends: ["eslint:recommended"], };