Files
DefinitelyTyped/types/yup/tsconfig.json
Renaud Chaput 8289d12c75 yup: add setLocale and update with 0.24 changes (#23033)
* Add `setLocale` definition
* Add `lessThan`, `moreThan` on `number` (according to https://github.com/jquense/yup/blob/master/CHANGELOG.md)
2018-01-18 13:53:45 -08:00

25 lines
517 B
JSON

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