mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
* 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
24 lines
496 B
JSON
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"
|
|
]
|
|
}
|