Add types for react-numeric-input (#21151)

This commit is contained in:
Heather Booker
2017-11-03 11:04:12 -04:00
committed by Andy
parent cbaa668281
commit 90ee6baac4
4 changed files with 79 additions and 0 deletions

View File

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