-
Notifications
You must be signed in to change notification settings - Fork 0
/
.projenrc.js
31 lines (29 loc) · 881 Bytes
/
.projenrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
const { AwsCdkTypeScriptApp } = require('projen');
const project = new AwsCdkTypeScriptApp({
cdkVersion: '1.78.0',
authorName: 'Roman Naumenko',
repository: 'https://github.com/OperationalFallacy/max-lambda-out',
name: 'max-lambda-out',
dependabot: false,
buildWorkflow: false,
rebuildBot: false,
mergify: false,
cdkDependencies: [
'@aws-cdk/core',
'@aws-cdk/aws-apigatewayv2',
'@aws-cdk/aws-lambda',
'@aws-cdk/aws-lambda-nodejs',
'@aws-cdk/pipelines',
'@aws-cdk/aws-codepipeline',
'@aws-cdk/aws-codepipeline-actions',
'@aws-cdk/aws-apigatewayv2-integrations',
],
context: {
"@aws-cdk/core:enableStackNameDuplicates": "true",
"aws-cdk:enableDiffNoFail": "true",
"@aws-cdk/core:stackRelativeExports": "true",
"@aws-cdk/core:newStyleStackSynthesis": "true"
},
appEntrypoint: 'index.ts'
});
project.synth();