Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2024-09-30 17:13:32 +00:00
parent 3fe5410805
commit 931cd264c2
72 changed files with 2295 additions and 1569 deletions

19
node_modules/eslint-plugin-import/config/flat/react.js generated vendored Normal file
View file

@ -0,0 +1,19 @@
/**
* Adds `.jsx` as an extension, and enables JSX parsing.
*
* Even if _you_ aren't using JSX (or .jsx) directly, if your dependencies
* define jsnext:main and have JSX internally, you may run into problems
* if you don't enable these settings at the top level.
*/
module.exports = {
settings: {
'import/extensions': ['.js', '.jsx', '.mjs', '.cjs'],
},
languageOptions: {
parserOptions: {
ecmaFeatures: {
jsx: true,
},
},
},
};