We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18d362f commit cf4bd43Copy full SHA for cf4bd43
source/infrastructure/cdk.json
@@ -3,7 +3,10 @@
3
"output": "cdk.out",
4
"build": "npx projen bundle",
5
"watch": {
6
- "include": ["src/**/*.ts", "test/**/*.ts"],
+ "include": [
7
+ "src/**/*.ts",
8
+ "test/**/*.ts"
9
+ ],
10
"exclude": [
11
"README.md",
12
"cdk*.json",
@@ -16,7 +19,11 @@
16
19
]
17
20
},
18
21
"context": {
- "@aws-cdk/customresources:installLatestAwsSdkDefault": false
22
+ "@aws-cdk/customresources:installLatestAwsSdkDefault": false,
23
+ "@aws-cdk/core:retryOptions": {
24
+ "maxAttempts": 3,
25
+ "backoffRate": 1.5
26
+ }
27
28
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
-}
29
+}
0 commit comments