2023-04-21 21:27:13 +09:00
|
|
|
module.exports = {
|
2023-04-22 02:36:08 +09:00
|
|
|
extends: [
|
|
|
|
'tools',
|
|
|
|
'plugin:react/recommended',
|
2023-04-28 09:46:05 +09:00
|
|
|
"plugin:react-hooks/recommended",
|
2023-04-22 02:36:08 +09:00
|
|
|
],
|
2023-04-26 12:54:20 +09:00
|
|
|
settings: {
|
|
|
|
react: {
|
|
|
|
version: "detect"
|
|
|
|
},
|
|
|
|
},
|
2023-04-22 02:36:08 +09:00
|
|
|
parserOptions: {
|
|
|
|
ecmaFeatures: {
|
|
|
|
jsx: true,
|
|
|
|
},
|
|
|
|
ecmaVersion: 2020,
|
|
|
|
project: './tsconfig.json', // プロジェクトに対するコンパイル設定ファイルのパス
|
|
|
|
sourceType: 'module',
|
|
|
|
tsconfigRootDir: __dirname,
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
'react',
|
|
|
|
'react-hooks',
|
|
|
|
],
|
|
|
|
};
|