DefinitelyTyped/types/react-gamepad/tsconfig.json
Brian Donovan 9669821e42 [@types/react-gamepad] initial types for package (#38253)
I offered to add these types to the package itself, but that never went anywhere: https://github.com/SBRK/react-gamepad/issues/7.
2019-09-24 14:46:16 -07:00

27 lines
575 B
JSON

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