DefinitelyTyped/types/zipkin-context-cls/tsconfig.json
Nathan Shively-Sanders 380ff17252 Two more cleanup items
1. Transducers-js' tests incorrectly assumed that tuple types were
inferred from array literals. Added an annotation.
2. zipkin-context-cls and zipkin-transport-http both depend on zipkin,
which requires either dom or node's Console to be defined. Added
`lib: "dom"` in both tsconfigs.
2019-02-25 09:23:07 -08:00

25 lines
518 B
JSON

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