-
Notifications
You must be signed in to change notification settings - Fork 0
/
.projenrc.ts
36 lines (33 loc) · 853 Bytes
/
.projenrc.ts
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
32
33
34
35
36
import { awscdk } from "projen";
const cdkVersion = "2.166.0";
const project = new awscdk.AwsCdkTypeScriptApp({
cdkVersion: cdkVersion,
name: "cdk-fargate-apigateway-http-api",
context: { "@aws-cdk/core:newStyleStackSynthesis": true },
authorEmail: "[email protected]",
authorName: "Niko Virtala",
authorUrl: "https://nikovirtala.dev/",
license: "MIT",
licensed: true,
buildWorkflow: true,
codeCov: false,
defaultReleaseBranch: "main",
dependabot: false,
depsUpgradeOptions: {
workflowOptions: {
labels: ["auto-approve", "auto-merge"],
},
},
autoApproveOptions: {
secret: "GITHUB_TOKEN",
allowedUsernames: ["nikovirtala"],
},
eslint: true,
prettier: true,
jest: false,
mergify: true,
pullRequestTemplate: false,
typescriptVersion: "5.6.3",
projenrcTs: true,
});
project.synth();