DefinitelyTyped/types/express-flash/tsconfig.json
Ian Mobley 2eaf80dd72 Add basic express-flash definition
express-flash just implements connenct-flash so there is no need to
define anything beside the single RequestHandler function that it
exports.
2018-04-03 13:42:25 -07:00

24 lines
494 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-flash-tests.ts"
]
}