DefinitelyTyped/types/react-gateway/tsconfig.json
Jason Unger 9e79023693 Add types for react-gateway@2.8 (#27029)
* Add types for react-gateway@2.8

* Fix linting

* Remove unnecessary lib folder
2018-07-03 15:11:12 -07:00

29 lines
635 B
JSON

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