DefinitelyTyped/types/changelog-parser/tsconfig.json
Adam Zerella 1a5fa20288 [changelog-parser] Add typing for changelog-parser (#34137)
* Added type defs for changelog-parser

* Updated jsdoc comments

* Corrected callback return type

Added Partial<Options>
2019-03-25 09:55:55 -07:00

23 lines
496 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",
"changelog-parser-tests.ts"
]
}