Files
react/packages/eslint-plugin-react-hooks/tsconfig.json
laurenandGitHub a84862dbdc [eslint] Target ES5 (#32420)
Update eslint-plugin-react-hooks to be built targetting ES5 instead. For
various reasons our internal infra relies on these files being built
already downleveled.
2025-02-18 16:56:02 -05:00

16 lines
357 B
JSON

{
"extends": "@tsconfig/strictest/tsconfig.json",
"compilerOptions": {
"module": "ES2015",
"target": "ES5",
"moduleResolution": "Bundler",
"lib": ["ES2020"],
"rootDir": ".",
"sourceMap": false,
"types": ["estree-jsx", "node"],
"downlevelIteration": true
},
"exclude": ["node_modules"],
"include": ["src/**/*.ts"]
}