DefinitelyTyped/types/datadog-winston/tsconfig.json
Matthew Hintzke e70729bb83 Adding TypeScript support for "datadog-winston" (#37983)
* Added typings for datadog-winston

* Updated comments

* Fixing comments which will also kick the Git checks

* Apparently I can't have a PATCH in my version. I thought this was supposed to be the version of the JS package my types target

* Ahh I see now, it is the version of the JS package, just with PATCH omitted

* Updated library to use CommonJS style imports

* Formatting

* Fixing to not use a declare module

* Fixing whitespace

* Fixed typo

* Adding options into a namespace so it can be referenced by consumer
2019-12-13 11:51:27 -08:00

24 lines
496 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",
"datadog-winston-tests.ts"
]
}