mirror of
https://github.com/facebook/react.git
synced 2026-02-27 03:07:57 +00:00
25 lines
710 B
JSON
25 lines
710 B
JSON
{
|
|
"extends": "@tsconfig/node18-strictest/tsconfig.json",
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"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,
|
|
"sourceMap": true,
|
|
"composite": true
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"include": ["src/**/*.ts"]
|
|
}
|