mirror of
https://github.com/facebook/react.git
synced 2026-02-26 18:58:05 +00:00
31 lines
830 B
JSON
31 lines
830 B
JSON
{
|
|
"extends": "@tsconfig/node18-strictest/tsconfig.json",
|
|
"compilerOptions": {
|
|
"moduleResolution": "nodenext",
|
|
"declaration": true,
|
|
"declarationDir": "./dist",
|
|
"declarationMap": false,
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
// https://github.com/microsoft/TypeScript/issues/30925
|
|
"tsBuildInfoFile": "dist/tsconfig.tsbuildinfo",
|
|
"jsx": "react-jsxdev",
|
|
// 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,
|
|
"composite": true,
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"src/__tests__/fixtures"
|
|
],
|
|
"include": [
|
|
"src/**/*.ts"
|
|
]
|
|
}
|