DefinitelyTyped/types/react-countup/tsconfig.json
Daniel 9a785a5926 Add types for react-countup (#29730)
* Add types for react-countup

* Update ts config

* Update types

* Add additional props
2018-10-16 08:58:04 -07:00

26 lines
538 B
JSON

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