DefinitelyTyped/types/smtp-server/tsconfig.json
Piotr Roszatycki 692d55bf9f smtp-server: definitions for v3.3 (#20661)
* Type definitions for smtp-server 3.3

* Older version 1 must have a path mapping for itself

* DATA stream is Readable

* `err` argument for callbacks is optional if there is no other arg
2017-10-23 13:16:36 -07:00

23 lines
491 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",
"smtp-server-tests.ts"
]
}