DefinitelyTyped/types/kefir/tsconfig.json
James DiGioia 0f65a07217 Allow callback to take null in the error param (#34180)
Most nodebacks use `null` there to indicate no error, so the
types for `fromNodeCallback` should allow `null`.
2019-03-25 07:45:10 -07:00

25 lines
505 B
JSON

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