DefinitelyTyped/types/aws-lambda/tsconfig.json
Zach Anthony fd848fb675
feat(aws-lambda): add the amazon connect contact flow trigger (#45820)
* Added support for Amazon Connect Contact Flow Trigger to AWS Lambda

* Updated formatting of files
2020-07-06 14:10:10 -07:00

40 lines
1.0 KiB
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",
"aws-lambda-tests.ts",
"test/alb-tests.ts",
"test/api-gateway-tests.ts",
"test/cloudformation-tests.ts",
"test/cloudfront-tests.ts",
"test/cloudwatch-tests.ts",
"test/codepipeline-tests.ts",
"test/codebuild-tests.ts",
"test/connect-contact-flow-tests.ts",
"test/cognito-tests.ts",
"test/dynamodb-tests.ts",
"test/eventbridge-tests.ts",
"test/kinesis-tests.ts",
"test/lex-tests.ts",
"test/s3-tests.ts",
"test/sns-tests.ts",
"test/sqs-tests.ts"
]
}