DefinitelyTyped/types/node-isbn/tsconfig.json
Piotr Błażejewicz (Peter Blazejewicz) 330b8b9388
feat(node-isbn): new definition (#46880)
Definition types for books ISBN resolver:
- definition type
- tests

https://github.com/palmerabollo/node-isbn#node-isbn
https://www.npmjs.com/package/node-isbn

Thanks!
2020-08-18 17:29:27 -07:00

24 lines
490 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",
"node-isbn-tests.ts"
]
}