DefinitelyTyped/types/compression/tsconfig.json
Piotr Błażejewicz (Peter Blazejewicz) c85c9c89b5
update(compression): amend module definition and bump to 1.7 (#42045)
- CommonJS module refined
- added public document props
- removed implicit zlib props from defintion and opt-in for unnamed
props support
- proper support for module Express.Response.flush method added
- tests amended to reflect changes in module definition
- Prettier run on the definition file
- configuration based on current DT settings

Thanks!
2020-02-07 14:08:59 -08:00

24 lines
492 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",
"compression-tests.ts"
]
}