mirror of
https://github.com/facebook/react.git
synced 2026-02-23 20:23:02 +00:00
27 lines
697 B
JSON
27 lines
697 B
JSON
{
|
|
"extends": "@tsconfig/strictest/tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "ES2015",
|
|
"moduleResolution": "Bundler",
|
|
"rootDir": "../",
|
|
"noEmit": true,
|
|
"jsx": "react-jsxdev",
|
|
"paths": {
|
|
"*": ["./src/types/*"]
|
|
},
|
|
|
|
// weaken strictness from preset
|
|
"importsNotUsedAsValues": "remove",
|
|
"noUncheckedIndexedAccess": false,
|
|
"noUnusedParameters": false,
|
|
"useUnknownInCatchVariables": false,
|
|
"target": "ES2015",
|
|
// ideally turn off only during dev, or on a per-file basis
|
|
"noUnusedLocals": false,
|
|
"sourceMap": false,
|
|
"removeComments": true
|
|
},
|
|
"exclude": ["node_modules", "./src/types/*"],
|
|
"include": ["src/**/*.ts"]
|
|
}
|