DefinitelyTyped/types/bcrypt-nodejs/tsconfig.json
Piotr Błażejewicz (Peter Blazejewicz) 1e566e7f37
fix(bcrypt-nodejs): allow null as hash progress callback (#42041)
- fixes async hash definition bug
- update module definition syntax
- update configuration to match latest DT specs

Thanks!
2020-02-06 15:01:04 -08:00

24 lines
494 B
JSON

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