DefinitelyTyped/types/express-mung/tsconfig.json
Jesse Lentz 9965ee2751 [express-mung] Fix function return types and add write function (#29352)
* [express-mung] Fix function return types and add write function

* [express-mung] Indicate types are for version 0.5.1
2018-10-10 13:14:28 -07:00

24 lines
493 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",
"express-mung-tests.ts"
]
}