mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
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.
16 lines
357 B
JSON
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"]
|
|
}
|