DefinitelyTyped/types/ink-box/tsconfig.json
omjadas fd1e561330
add types for ink-box (#45168)
* chore: add types for ink-box

* chore: use React.FC

* chore: address review comments
2020-06-01 15:15:41 -07:00

25 lines
513 B
JSON

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