React input mask (#14068)

* add react mask input

* tsx do not work

* regenerate with command line

* tsx in tsconfig

* maskChar accept null

* lint
This commit is contained in:
Alexandre Paré
2017-01-17 15:09:25 -05:00
committed by Mohamed Hegazy
parent cd116a2d29
commit c4e848741d
4 changed files with 74 additions and 0 deletions

View File

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