Files
DefinitelyTyped/types/pino/tsconfig.json
Dimitri Benin 094bb30f88 [pino] add typings for v4.7, enable linting & strictNullChecks (#18634)
* [pino] add typings for v4.7, enable linting & strictNullChecks

* [pino] make Logger instance extend EventEmitter, overload EventEmitter interfaces
2017-08-04 16:35:36 -07:00

23 lines
448 B
JSON

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