/
githubmr
/
facebook-react
Обзор
Документация
Войти
/
githubmr
/
facebook-react
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/eslint-plugin-react-hooks/tsconfig.json
33 строки
943 B
michael faith
feat(eslint-plugin-react-hooks): merge rule from eslint-plugin-react-compiler into `react-hooks` plugin (#32416)
13 мар 2025, 04:43
Не верифицирован
13 мар 2025, 04:43
5ccfcd1
Код
Авторство
О чём код?
{ "extends": "@tsconfig/strictest/tsconfig.json", "compilerOptions": { "module": "ES2015", "target": "ES2015", "moduleResolution": "Bundler", "lib": ["ES2020", "dom"], "sourceMap": false, "types": ["estree-jsx", "node"], "downlevelIteration": true, "paths": { "babel-plugin-react-compiler": ["../../compiler/packages/babel-plugin-react-compiler/src"] }, "jsx": "react-jsxdev", "rootDir": "../..", "baseUrl": ".", "typeRoots": [ "../../node_modules/@types" ], "checkJs": false, "allowJs": false, // weaken strictness from preset "importsNotUsedAsValues": "remove", "noUncheckedIndexedAccess": false, "noUnusedParameters": false, "useUnknownInCatchVariables": true, // ideally turn off only during dev, or on a per-file basis "noUnusedLocals": false, "removeComments": true, }, "include": ["src/**/*.ts", "__tests__/**/*.ts"] }