Files
DefinitelyTyped/types/nodemailer/tsconfig.json
Ben Windsor a7c4d07798 Update SES nodemailer typings to match current implementation (#17888)
* Update ses transport types to match current nodemailer

* Updated tests

* Updated version number

* Update SES test to match new defintion

* Set noemit to true in tsconfig

* Change version to only have x.x

* Added import aws-sdk to ses tests

* Added package.json for aws dependency

* Add missing semicolon
2017-07-17 10:39:39 -07:00

23 lines
479 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": false,
"baseUrl": "../",
"typeRoots": [
"../"
],
"allowJs": true,
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"nodemailer-tests.ts"
]
}