DefinitelyTyped/types/omit-empty/tsconfig.json
Shubham Kanodia 95d0278f0e Added types for omit-empty (#34178)
* Added types for omit-empty

* Used dt-gen to regenerate types

* Added strictFunctionTypes flag

* Removed patch version

* Fixed some lint errors

* Fixed more lint errors
2019-03-29 20:13:04 -07:00

24 lines
491 B
JSON

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