Add typings for Reactable 0.14. (#18270)

* Add typings for Reactable 0.14. Not complete but the stuff provided by the typings have been tested/used quite extensively by myself during the development of ReactPlayer!

* Add two tests (very simple one and a quite sophisticated one which contains all the components i created typings for...)
This commit is contained in:
spielc
2017-07-22 21:04:34 +02:00
committed by Wesley Wigham
parent 42e60e5283
commit 69c1ab4f36
4 changed files with 167 additions and 0 deletions

View File

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