DefinitelyTyped/types/react-native-phone-input/tsconfig.json
Matthew Elphick 4dca5ecae9 feat: Add types for react-native-phone-input (#38937)
* feat: Add types for react-native-phone-input

* fix: Add missing onPressCancel, onPressConfirm, blur

* style: Commit formatting from pre-commit hook
2019-10-08 12:42:32 -07:00

24 lines
492 B
JSON

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