DefinitelyTyped/types/hoist-non-react-statics/tsconfig.json
JounQin a4193f5adb [hoist-non-react-statics] fix: support custom Props, exclude known react statics, improve test cases (#27745)
* fix: support custom Props, exclude known react statics, improve test cases

* feat: prototype is included in KNOWN_STATICS
2018-08-01 11:49:29 -07:00

25 lines
532 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"jsx": "preserve"
},
"files": [
"index.d.ts",
"hoist-non-react-statics-tests.tsx"
]
}