@nikovirtala/projen-constructs 0.2.0 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (631) hide show
  1. package/.jsii +1406 -66
  2. package/docs/api/.nojekyll +1 -0
  3. package/docs/api/assets/hierarchy.js +1 -0
  4. package/docs/api/assets/highlight.css +99 -0
  5. package/docs/api/assets/icons.js +18 -0
  6. package/docs/api/assets/icons.svg +1 -0
  7. package/docs/api/assets/main.js +60 -0
  8. package/docs/api/assets/navigation.js +1 -0
  9. package/docs/api/assets/search.js +1 -0
  10. package/docs/api/assets/style.css +1633 -0
  11. package/docs/api/classes/AwsCdkConstructLibraryProject.html +308 -0
  12. package/docs/api/classes/AwsCdkTypeScriptAppProject.html +306 -0
  13. package/docs/api/classes/JsiiProject.html +294 -0
  14. package/docs/api/classes/ProjectGenerator.html +38 -0
  15. package/docs/api/classes/TypeDoc.html +37 -0
  16. package/docs/api/classes/TypeScriptProject.html +294 -0
  17. package/docs/api/classes/Vitest.html +38 -0
  18. package/docs/api/enums/CommentStyle.html +11 -0
  19. package/docs/api/enums/CoverageProvider.html +7 -0
  20. package/docs/api/enums/CoverageReporter.html +11 -0
  21. package/docs/api/enums/EntryPointStrategy.html +11 -0
  22. package/docs/api/enums/Environment.html +12 -0
  23. package/docs/api/enums/LogLevel.html +13 -0
  24. package/docs/api/enums/Pool.html +17 -0
  25. package/docs/api/enums/ProjectType.html +47 -0
  26. package/docs/api/enums/Visibility.html +9 -0
  27. package/docs/api/functions/applyDefaults.html +1 -0
  28. package/docs/api/functions/toJson_TypeDocConfiguration.html +2 -0
  29. package/docs/api/hierarchy.html +1 -0
  30. package/docs/api/index.html +86 -0
  31. package/docs/api/interfaces/AwsCdkConstructLibraryProjectOptions.html +1075 -0
  32. package/docs/api/interfaces/AwsCdkTypeScriptAppProjectOptions.html +1026 -0
  33. package/docs/api/interfaces/Component.html +13 -0
  34. package/docs/api/interfaces/ComponentOptions.html +8 -0
  35. package/docs/api/interfaces/JsiiProjectOptions.html +1003 -0
  36. package/docs/api/interfaces/ProjectGeneratorOptions.html +49 -0
  37. package/docs/api/interfaces/TypeDocConfiguration.html +141 -0
  38. package/docs/api/interfaces/TypeDocOptions.html +9 -0
  39. package/docs/api/interfaces/TypeScriptProjectOptions.html +899 -0
  40. package/docs/api/interfaces/ValidationOptions.html +9 -0
  41. package/docs/api/interfaces/VitestConfigOptions.html +111 -0
  42. package/docs/api/interfaces/VitestOptions.html +13 -0
  43. package/docs/api/modules.html +1 -0
  44. package/docs/api/variables/defaultOptions.html +1 -0
  45. package/docs/api/variables/defaults.html +1 -0
  46. package/docs/api/variables/projectDefaultOptions.html +1 -0
  47. package/lib/components/typedoc.js +5 -1
  48. package/lib/components/vitest.js +1 -1
  49. package/lib/index.d.ts +1 -0
  50. package/lib/index.js +2 -1
  51. package/lib/project-generator.js +1 -1
  52. package/lib/projects/awscdk-construct-library.generated.js +1 -1
  53. package/lib/projects/awscdk-typescript-app.generated.js +1 -1
  54. package/lib/projects/jsii-options.generated.d.ts +11 -1
  55. package/lib/projects/jsii-options.generated.js +1 -1
  56. package/lib/projects/jsii.generated.js +5 -4
  57. package/lib/projects/typescript.generated.js +1 -1
  58. package/node_modules/@jsii/spec/LICENSE +202 -0
  59. package/node_modules/@jsii/spec/NOTICE +2 -0
  60. package/node_modules/@jsii/spec/README.md +13 -0
  61. package/node_modules/@jsii/spec/jest.config.mjs +9 -0
  62. package/node_modules/@jsii/spec/lib/assembly-utils.d.ts +59 -0
  63. package/node_modules/@jsii/spec/lib/assembly-utils.js +158 -0
  64. package/node_modules/@jsii/spec/lib/assembly.d.ts +920 -0
  65. package/node_modules/@jsii/spec/lib/assembly.js +203 -0
  66. package/node_modules/@jsii/spec/lib/configuration.d.ts +147 -0
  67. package/node_modules/@jsii/spec/lib/configuration.js +3 -0
  68. package/node_modules/@jsii/spec/lib/index.d.ts +7 -0
  69. package/node_modules/@jsii/spec/lib/index.js +23 -0
  70. package/node_modules/@jsii/spec/lib/name-tree.d.ts +60 -0
  71. package/node_modules/@jsii/spec/lib/name-tree.js +84 -0
  72. package/node_modules/@jsii/spec/lib/redirect.d.ts +33 -0
  73. package/node_modules/@jsii/spec/lib/redirect.js +46 -0
  74. package/node_modules/@jsii/spec/lib/validate-assembly.d.ts +4 -0
  75. package/node_modules/@jsii/spec/lib/validate-assembly.js +29 -0
  76. package/node_modules/@jsii/spec/package.json +41 -0
  77. package/node_modules/@jsii/spec/schema/assembly-redirect.schema.json +29 -0
  78. package/node_modules/@jsii/spec/schema/jsii-spec.schema.json +1110 -0
  79. package/node_modules/@mrgrain/jsii-struct-builder/LICENSE +202 -0
  80. package/node_modules/@mrgrain/jsii-struct-builder/README.md +387 -0
  81. package/node_modules/@mrgrain/jsii-struct-builder/lib/builder/index.d.ts +1 -0
  82. package/node_modules/@mrgrain/jsii-struct-builder/lib/builder/index.js +18 -0
  83. package/node_modules/@mrgrain/jsii-struct-builder/lib/builder/struct.d.ts +144 -0
  84. package/node_modules/@mrgrain/jsii-struct-builder/lib/builder/struct.js +163 -0
  85. package/node_modules/@mrgrain/jsii-struct-builder/lib/index.d.ts +3 -0
  86. package/node_modules/@mrgrain/jsii-struct-builder/lib/index.js +20 -0
  87. package/node_modules/@mrgrain/jsii-struct-builder/lib/private/assembly.d.ts +2 -0
  88. package/node_modules/@mrgrain/jsii-struct-builder/lib/private/assembly.js +76 -0
  89. package/node_modules/@mrgrain/jsii-struct-builder/lib/private/index.d.ts +2 -0
  90. package/node_modules/@mrgrain/jsii-struct-builder/lib/private/index.js +19 -0
  91. package/node_modules/@mrgrain/jsii-struct-builder/lib/private/utils.d.ts +2 -0
  92. package/node_modules/@mrgrain/jsii-struct-builder/lib/private/utils.js +14 -0
  93. package/node_modules/@mrgrain/jsii-struct-builder/lib/projen/index.d.ts +2 -0
  94. package/node_modules/@mrgrain/jsii-struct-builder/lib/projen/index.js +19 -0
  95. package/node_modules/@mrgrain/jsii-struct-builder/lib/projen/projen-struct.d.ts +90 -0
  96. package/node_modules/@mrgrain/jsii-struct-builder/lib/projen/projen-struct.js +112 -0
  97. package/node_modules/@mrgrain/jsii-struct-builder/lib/projen/ts-interface.d.ts +15 -0
  98. package/node_modules/@mrgrain/jsii-struct-builder/lib/projen/ts-interface.js +18 -0
  99. package/node_modules/@mrgrain/jsii-struct-builder/lib/renderer/index.d.ts +1 -0
  100. package/node_modules/@mrgrain/jsii-struct-builder/lib/renderer/index.js +18 -0
  101. package/node_modules/@mrgrain/jsii-struct-builder/lib/renderer/typescript.d.ts +53 -0
  102. package/node_modules/@mrgrain/jsii-struct-builder/lib/renderer/typescript.js +194 -0
  103. package/node_modules/@mrgrain/jsii-struct-builder/package.json +116 -0
  104. package/node_modules/ajv/.runkit_example.js +23 -0
  105. package/node_modules/ajv/LICENSE +22 -0
  106. package/node_modules/ajv/README.md +207 -0
  107. package/node_modules/ajv/dist/2019.d.ts +19 -0
  108. package/node_modules/ajv/dist/2019.js +61 -0
  109. package/node_modules/ajv/dist/2019.js.map +1 -0
  110. package/node_modules/ajv/dist/2020.d.ts +19 -0
  111. package/node_modules/ajv/dist/2020.js +55 -0
  112. package/node_modules/ajv/dist/2020.js.map +1 -0
  113. package/node_modules/ajv/dist/ajv.d.ts +18 -0
  114. package/node_modules/ajv/dist/ajv.js +50 -0
  115. package/node_modules/ajv/dist/ajv.js.map +1 -0
  116. package/node_modules/ajv/dist/compile/codegen/code.d.ts +40 -0
  117. package/node_modules/ajv/dist/compile/codegen/code.js +156 -0
  118. package/node_modules/ajv/dist/compile/codegen/code.js.map +1 -0
  119. package/node_modules/ajv/dist/compile/codegen/index.d.ts +79 -0
  120. package/node_modules/ajv/dist/compile/codegen/index.js +697 -0
  121. package/node_modules/ajv/dist/compile/codegen/index.js.map +1 -0
  122. package/node_modules/ajv/dist/compile/codegen/scope.d.ts +79 -0
  123. package/node_modules/ajv/dist/compile/codegen/scope.js +143 -0
  124. package/node_modules/ajv/dist/compile/codegen/scope.js.map +1 -0
  125. package/node_modules/ajv/dist/compile/errors.d.ts +13 -0
  126. package/node_modules/ajv/dist/compile/errors.js +123 -0
  127. package/node_modules/ajv/dist/compile/errors.js.map +1 -0
  128. package/node_modules/ajv/dist/compile/index.d.ts +80 -0
  129. package/node_modules/ajv/dist/compile/index.js +242 -0
  130. package/node_modules/ajv/dist/compile/index.js.map +1 -0
  131. package/node_modules/ajv/dist/compile/jtd/parse.d.ts +4 -0
  132. package/node_modules/ajv/dist/compile/jtd/parse.js +350 -0
  133. package/node_modules/ajv/dist/compile/jtd/parse.js.map +1 -0
  134. package/node_modules/ajv/dist/compile/jtd/serialize.d.ts +4 -0
  135. package/node_modules/ajv/dist/compile/jtd/serialize.js +229 -0
  136. package/node_modules/ajv/dist/compile/jtd/serialize.js.map +1 -0
  137. package/node_modules/ajv/dist/compile/jtd/types.d.ts +6 -0
  138. package/node_modules/ajv/dist/compile/jtd/types.js +14 -0
  139. package/node_modules/ajv/dist/compile/jtd/types.js.map +1 -0
  140. package/node_modules/ajv/dist/compile/names.d.ts +20 -0
  141. package/node_modules/ajv/dist/compile/names.js +28 -0
  142. package/node_modules/ajv/dist/compile/names.js.map +1 -0
  143. package/node_modules/ajv/dist/compile/ref_error.d.ts +6 -0
  144. package/node_modules/ajv/dist/compile/ref_error.js +12 -0
  145. package/node_modules/ajv/dist/compile/ref_error.js.map +1 -0
  146. package/node_modules/ajv/dist/compile/resolve.d.ts +12 -0
  147. package/node_modules/ajv/dist/compile/resolve.js +155 -0
  148. package/node_modules/ajv/dist/compile/resolve.js.map +1 -0
  149. package/node_modules/ajv/dist/compile/rules.d.ts +28 -0
  150. package/node_modules/ajv/dist/compile/rules.js +26 -0
  151. package/node_modules/ajv/dist/compile/rules.js.map +1 -0
  152. package/node_modules/ajv/dist/compile/util.d.ts +40 -0
  153. package/node_modules/ajv/dist/compile/util.js +178 -0
  154. package/node_modules/ajv/dist/compile/util.js.map +1 -0
  155. package/node_modules/ajv/dist/compile/validate/applicability.d.ts +6 -0
  156. package/node_modules/ajv/dist/compile/validate/applicability.js +19 -0
  157. package/node_modules/ajv/dist/compile/validate/applicability.js.map +1 -0
  158. package/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +4 -0
  159. package/node_modules/ajv/dist/compile/validate/boolSchema.js +50 -0
  160. package/node_modules/ajv/dist/compile/validate/boolSchema.js.map +1 -0
  161. package/node_modules/ajv/dist/compile/validate/dataType.d.ts +17 -0
  162. package/node_modules/ajv/dist/compile/validate/dataType.js +203 -0
  163. package/node_modules/ajv/dist/compile/validate/dataType.js.map +1 -0
  164. package/node_modules/ajv/dist/compile/validate/defaults.d.ts +2 -0
  165. package/node_modules/ajv/dist/compile/validate/defaults.js +35 -0
  166. package/node_modules/ajv/dist/compile/validate/defaults.js.map +1 -0
  167. package/node_modules/ajv/dist/compile/validate/index.d.ts +42 -0
  168. package/node_modules/ajv/dist/compile/validate/index.js +520 -0
  169. package/node_modules/ajv/dist/compile/validate/index.js.map +1 -0
  170. package/node_modules/ajv/dist/compile/validate/keyword.d.ts +8 -0
  171. package/node_modules/ajv/dist/compile/validate/keyword.js +124 -0
  172. package/node_modules/ajv/dist/compile/validate/keyword.js.map +1 -0
  173. package/node_modules/ajv/dist/compile/validate/subschema.d.ts +47 -0
  174. package/node_modules/ajv/dist/compile/validate/subschema.js +81 -0
  175. package/node_modules/ajv/dist/compile/validate/subschema.js.map +1 -0
  176. package/node_modules/ajv/dist/core.d.ts +173 -0
  177. package/node_modules/ajv/dist/core.js +618 -0
  178. package/node_modules/ajv/dist/core.js.map +1 -0
  179. package/node_modules/ajv/dist/jtd.d.ts +47 -0
  180. package/node_modules/ajv/dist/jtd.js +72 -0
  181. package/node_modules/ajv/dist/jtd.js.map +1 -0
  182. package/node_modules/ajv/dist/refs/data.json +13 -0
  183. package/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +2 -0
  184. package/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +28 -0
  185. package/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map +1 -0
  186. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +53 -0
  187. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +17 -0
  188. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +57 -0
  189. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +14 -0
  190. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +37 -0
  191. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +90 -0
  192. package/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +39 -0
  193. package/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +2 -0
  194. package/node_modules/ajv/dist/refs/json-schema-2020-12/index.js +30 -0
  195. package/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map +1 -0
  196. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +48 -0
  197. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json +17 -0
  198. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json +51 -0
  199. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
  200. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +37 -0
  201. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
  202. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json +90 -0
  203. package/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json +55 -0
  204. package/node_modules/ajv/dist/refs/json-schema-draft-06.json +137 -0
  205. package/node_modules/ajv/dist/refs/json-schema-draft-07.json +151 -0
  206. package/node_modules/ajv/dist/refs/json-schema-secure.json +88 -0
  207. package/node_modules/ajv/dist/refs/jtd-schema.d.ts +3 -0
  208. package/node_modules/ajv/dist/refs/jtd-schema.js +118 -0
  209. package/node_modules/ajv/dist/refs/jtd-schema.js.map +1 -0
  210. package/node_modules/ajv/dist/runtime/equal.d.ts +6 -0
  211. package/node_modules/ajv/dist/runtime/equal.js +7 -0
  212. package/node_modules/ajv/dist/runtime/equal.js.map +1 -0
  213. package/node_modules/ajv/dist/runtime/parseJson.d.ts +18 -0
  214. package/node_modules/ajv/dist/runtime/parseJson.js +185 -0
  215. package/node_modules/ajv/dist/runtime/parseJson.js.map +1 -0
  216. package/node_modules/ajv/dist/runtime/quote.d.ts +5 -0
  217. package/node_modules/ajv/dist/runtime/quote.js +30 -0
  218. package/node_modules/ajv/dist/runtime/quote.js.map +1 -0
  219. package/node_modules/ajv/dist/runtime/re2.d.ts +6 -0
  220. package/node_modules/ajv/dist/runtime/re2.js +6 -0
  221. package/node_modules/ajv/dist/runtime/re2.js.map +1 -0
  222. package/node_modules/ajv/dist/runtime/timestamp.d.ts +5 -0
  223. package/node_modules/ajv/dist/runtime/timestamp.js +42 -0
  224. package/node_modules/ajv/dist/runtime/timestamp.js.map +1 -0
  225. package/node_modules/ajv/dist/runtime/ucs2length.d.ts +5 -0
  226. package/node_modules/ajv/dist/runtime/ucs2length.js +24 -0
  227. package/node_modules/ajv/dist/runtime/ucs2length.js.map +1 -0
  228. package/node_modules/ajv/dist/runtime/uri.d.ts +6 -0
  229. package/node_modules/ajv/dist/runtime/uri.js +6 -0
  230. package/node_modules/ajv/dist/runtime/uri.js.map +1 -0
  231. package/node_modules/ajv/dist/runtime/validation_error.d.ts +7 -0
  232. package/node_modules/ajv/dist/runtime/validation_error.js +11 -0
  233. package/node_modules/ajv/dist/runtime/validation_error.js.map +1 -0
  234. package/node_modules/ajv/dist/standalone/index.d.ts +6 -0
  235. package/node_modules/ajv/dist/standalone/index.js +90 -0
  236. package/node_modules/ajv/dist/standalone/index.js.map +1 -0
  237. package/node_modules/ajv/dist/standalone/instance.d.ts +12 -0
  238. package/node_modules/ajv/dist/standalone/instance.js +35 -0
  239. package/node_modules/ajv/dist/standalone/instance.js.map +1 -0
  240. package/node_modules/ajv/dist/types/index.d.ts +183 -0
  241. package/node_modules/ajv/dist/types/index.js +3 -0
  242. package/node_modules/ajv/dist/types/index.js.map +1 -0
  243. package/node_modules/ajv/dist/types/json-schema.d.ts +125 -0
  244. package/node_modules/ajv/dist/types/json-schema.js +3 -0
  245. package/node_modules/ajv/dist/types/json-schema.js.map +1 -0
  246. package/node_modules/ajv/dist/types/jtd-schema.d.ts +174 -0
  247. package/node_modules/ajv/dist/types/jtd-schema.js +3 -0
  248. package/node_modules/ajv/dist/types/jtd-schema.js.map +1 -0
  249. package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +8 -0
  250. package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +49 -0
  251. package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +1 -0
  252. package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +6 -0
  253. package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +106 -0
  254. package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +1 -0
  255. package/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +3 -0
  256. package/node_modules/ajv/dist/vocabularies/applicator/allOf.js +23 -0
  257. package/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +1 -0
  258. package/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +4 -0
  259. package/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +12 -0
  260. package/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +1 -0
  261. package/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +7 -0
  262. package/node_modules/ajv/dist/vocabularies/applicator/contains.js +95 -0
  263. package/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +1 -0
  264. package/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +21 -0
  265. package/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +85 -0
  266. package/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +1 -0
  267. package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +3 -0
  268. package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +11 -0
  269. package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +1 -0
  270. package/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +6 -0
  271. package/node_modules/ajv/dist/vocabularies/applicator/if.js +66 -0
  272. package/node_modules/ajv/dist/vocabularies/applicator/if.js.map +1 -0
  273. package/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +13 -0
  274. package/node_modules/ajv/dist/vocabularies/applicator/index.js +44 -0
  275. package/node_modules/ajv/dist/vocabularies/applicator/index.js.map +1 -0
  276. package/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +5 -0
  277. package/node_modules/ajv/dist/vocabularies/applicator/items.js +52 -0
  278. package/node_modules/ajv/dist/vocabularies/applicator/items.js.map +1 -0
  279. package/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +6 -0
  280. package/node_modules/ajv/dist/vocabularies/applicator/items2020.js +30 -0
  281. package/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +1 -0
  282. package/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +4 -0
  283. package/node_modules/ajv/dist/vocabularies/applicator/not.js +26 -0
  284. package/node_modules/ajv/dist/vocabularies/applicator/not.js.map +1 -0
  285. package/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +6 -0
  286. package/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +60 -0
  287. package/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +1 -0
  288. package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +3 -0
  289. package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +75 -0
  290. package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +1 -0
  291. package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +3 -0
  292. package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +12 -0
  293. package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +1 -0
  294. package/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +3 -0
  295. package/node_modules/ajv/dist/vocabularies/applicator/properties.js +54 -0
  296. package/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +1 -0
  297. package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +6 -0
  298. package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +38 -0
  299. package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +1 -0
  300. package/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +3 -0
  301. package/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +13 -0
  302. package/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +1 -0
  303. package/node_modules/ajv/dist/vocabularies/code.d.ts +17 -0
  304. package/node_modules/ajv/dist/vocabularies/code.js +131 -0
  305. package/node_modules/ajv/dist/vocabularies/code.js.map +1 -0
  306. package/node_modules/ajv/dist/vocabularies/core/id.d.ts +3 -0
  307. package/node_modules/ajv/dist/vocabularies/core/id.js +10 -0
  308. package/node_modules/ajv/dist/vocabularies/core/id.js.map +1 -0
  309. package/node_modules/ajv/dist/vocabularies/core/index.d.ts +3 -0
  310. package/node_modules/ajv/dist/vocabularies/core/index.js +16 -0
  311. package/node_modules/ajv/dist/vocabularies/core/index.js.map +1 -0
  312. package/node_modules/ajv/dist/vocabularies/core/ref.d.ts +8 -0
  313. package/node_modules/ajv/dist/vocabularies/core/ref.js +122 -0
  314. package/node_modules/ajv/dist/vocabularies/core/ref.js.map +1 -0
  315. package/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +5 -0
  316. package/node_modules/ajv/dist/vocabularies/discriminator/index.js +104 -0
  317. package/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +1 -0
  318. package/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +10 -0
  319. package/node_modules/ajv/dist/vocabularies/discriminator/types.js +9 -0
  320. package/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +1 -0
  321. package/node_modules/ajv/dist/vocabularies/draft2020.d.ts +3 -0
  322. package/node_modules/ajv/dist/vocabularies/draft2020.js +23 -0
  323. package/node_modules/ajv/dist/vocabularies/draft2020.js.map +1 -0
  324. package/node_modules/ajv/dist/vocabularies/draft7.d.ts +3 -0
  325. package/node_modules/ajv/dist/vocabularies/draft7.js +17 -0
  326. package/node_modules/ajv/dist/vocabularies/draft7.js.map +1 -0
  327. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +5 -0
  328. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +30 -0
  329. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +1 -0
  330. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +5 -0
  331. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +51 -0
  332. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +1 -0
  333. package/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +3 -0
  334. package/node_modules/ajv/dist/vocabularies/dynamic/index.js +9 -0
  335. package/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +1 -0
  336. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +3 -0
  337. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +16 -0
  338. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +1 -0
  339. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +3 -0
  340. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +10 -0
  341. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +1 -0
  342. package/node_modules/ajv/dist/vocabularies/errors.d.ts +9 -0
  343. package/node_modules/ajv/dist/vocabularies/errors.js +3 -0
  344. package/node_modules/ajv/dist/vocabularies/errors.js.map +1 -0
  345. package/node_modules/ajv/dist/vocabularies/format/format.d.ts +8 -0
  346. package/node_modules/ajv/dist/vocabularies/format/format.js +92 -0
  347. package/node_modules/ajv/dist/vocabularies/format/format.js.map +1 -0
  348. package/node_modules/ajv/dist/vocabularies/format/index.d.ts +3 -0
  349. package/node_modules/ajv/dist/vocabularies/format/index.js +6 -0
  350. package/node_modules/ajv/dist/vocabularies/format/index.js.map +1 -0
  351. package/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +6 -0
  352. package/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +71 -0
  353. package/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +1 -0
  354. package/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +5 -0
  355. package/node_modules/ajv/dist/vocabularies/jtd/elements.js +24 -0
  356. package/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +1 -0
  357. package/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +6 -0
  358. package/node_modules/ajv/dist/vocabularies/jtd/enum.js +43 -0
  359. package/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +1 -0
  360. package/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +9 -0
  361. package/node_modules/ajv/dist/vocabularies/jtd/error.js +20 -0
  362. package/node_modules/ajv/dist/vocabularies/jtd/error.js.map +1 -0
  363. package/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +10 -0
  364. package/node_modules/ajv/dist/vocabularies/jtd/index.js +29 -0
  365. package/node_modules/ajv/dist/vocabularies/jtd/index.js.map +1 -0
  366. package/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +5 -0
  367. package/node_modules/ajv/dist/vocabularies/jtd/metadata.js +25 -0
  368. package/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +1 -0
  369. package/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +4 -0
  370. package/node_modules/ajv/dist/vocabularies/jtd/nullable.js +22 -0
  371. package/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +1 -0
  372. package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +3 -0
  373. package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +15 -0
  374. package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +1 -0
  375. package/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +22 -0
  376. package/node_modules/ajv/dist/vocabularies/jtd/properties.js +149 -0
  377. package/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +1 -0
  378. package/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +4 -0
  379. package/node_modules/ajv/dist/vocabularies/jtd/ref.js +67 -0
  380. package/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +1 -0
  381. package/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +10 -0
  382. package/node_modules/ajv/dist/vocabularies/jtd/type.js +69 -0
  383. package/node_modules/ajv/dist/vocabularies/jtd/type.js.map +1 -0
  384. package/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +3 -0
  385. package/node_modules/ajv/dist/vocabularies/jtd/union.js +12 -0
  386. package/node_modules/ajv/dist/vocabularies/jtd/union.js.map +1 -0
  387. package/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +5 -0
  388. package/node_modules/ajv/dist/vocabularies/jtd/values.js +51 -0
  389. package/node_modules/ajv/dist/vocabularies/jtd/values.js.map +1 -0
  390. package/node_modules/ajv/dist/vocabularies/metadata.d.ts +3 -0
  391. package/node_modules/ajv/dist/vocabularies/metadata.js +18 -0
  392. package/node_modules/ajv/dist/vocabularies/metadata.js.map +1 -0
  393. package/node_modules/ajv/dist/vocabularies/next.d.ts +3 -0
  394. package/node_modules/ajv/dist/vocabularies/next.js +8 -0
  395. package/node_modules/ajv/dist/vocabularies/next.js.map +1 -0
  396. package/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +3 -0
  397. package/node_modules/ajv/dist/vocabularies/unevaluated/index.js +7 -0
  398. package/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +1 -0
  399. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +6 -0
  400. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +40 -0
  401. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +1 -0
  402. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +6 -0
  403. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +65 -0
  404. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +1 -0
  405. package/node_modules/ajv/dist/vocabularies/validation/const.d.ts +6 -0
  406. package/node_modules/ajv/dist/vocabularies/validation/const.js +25 -0
  407. package/node_modules/ajv/dist/vocabularies/validation/const.js.map +1 -0
  408. package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +5 -0
  409. package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +12 -0
  410. package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +1 -0
  411. package/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +8 -0
  412. package/node_modules/ajv/dist/vocabularies/validation/enum.js +48 -0
  413. package/node_modules/ajv/dist/vocabularies/validation/enum.js.map +1 -0
  414. package/node_modules/ajv/dist/vocabularies/validation/index.d.ts +16 -0
  415. package/node_modules/ajv/dist/vocabularies/validation/index.js +33 -0
  416. package/node_modules/ajv/dist/vocabularies/validation/index.js.map +1 -0
  417. package/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +3 -0
  418. package/node_modules/ajv/dist/vocabularies/validation/limitContains.js +15 -0
  419. package/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +1 -0
  420. package/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +3 -0
  421. package/node_modules/ajv/dist/vocabularies/validation/limitItems.js +24 -0
  422. package/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +1 -0
  423. package/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +3 -0
  424. package/node_modules/ajv/dist/vocabularies/validation/limitLength.js +27 -0
  425. package/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +1 -0
  426. package/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +11 -0
  427. package/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +27 -0
  428. package/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +1 -0
  429. package/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +3 -0
  430. package/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +24 -0
  431. package/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +1 -0
  432. package/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +8 -0
  433. package/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +26 -0
  434. package/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +1 -0
  435. package/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +8 -0
  436. package/node_modules/ajv/dist/vocabularies/validation/pattern.js +24 -0
  437. package/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +1 -0
  438. package/node_modules/ajv/dist/vocabularies/validation/required.d.ts +8 -0
  439. package/node_modules/ajv/dist/vocabularies/validation/required.js +79 -0
  440. package/node_modules/ajv/dist/vocabularies/validation/required.js.map +1 -0
  441. package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +9 -0
  442. package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +64 -0
  443. package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +1 -0
  444. package/node_modules/ajv/lib/2019.ts +81 -0
  445. package/node_modules/ajv/lib/2020.ts +75 -0
  446. package/node_modules/ajv/lib/ajv.ts +70 -0
  447. package/node_modules/ajv/lib/compile/codegen/code.ts +169 -0
  448. package/node_modules/ajv/lib/compile/codegen/index.ts +852 -0
  449. package/node_modules/ajv/lib/compile/codegen/scope.ts +215 -0
  450. package/node_modules/ajv/lib/compile/errors.ts +184 -0
  451. package/node_modules/ajv/lib/compile/index.ts +324 -0
  452. package/node_modules/ajv/lib/compile/jtd/parse.ts +411 -0
  453. package/node_modules/ajv/lib/compile/jtd/serialize.ts +266 -0
  454. package/node_modules/ajv/lib/compile/jtd/types.ts +16 -0
  455. package/node_modules/ajv/lib/compile/names.ts +27 -0
  456. package/node_modules/ajv/lib/compile/ref_error.ts +13 -0
  457. package/node_modules/ajv/lib/compile/resolve.ts +149 -0
  458. package/node_modules/ajv/lib/compile/rules.ts +50 -0
  459. package/node_modules/ajv/lib/compile/util.ts +213 -0
  460. package/node_modules/ajv/lib/compile/validate/applicability.ts +22 -0
  461. package/node_modules/ajv/lib/compile/validate/boolSchema.ts +47 -0
  462. package/node_modules/ajv/lib/compile/validate/dataType.ts +230 -0
  463. package/node_modules/ajv/lib/compile/validate/defaults.ts +32 -0
  464. package/node_modules/ajv/lib/compile/validate/index.ts +582 -0
  465. package/node_modules/ajv/lib/compile/validate/keyword.ts +171 -0
  466. package/node_modules/ajv/lib/compile/validate/subschema.ts +135 -0
  467. package/node_modules/ajv/lib/core.ts +891 -0
  468. package/node_modules/ajv/lib/jtd.ts +132 -0
  469. package/node_modules/ajv/lib/refs/data.json +13 -0
  470. package/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +28 -0
  471. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +53 -0
  472. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +17 -0
  473. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +57 -0
  474. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +14 -0
  475. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +37 -0
  476. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +90 -0
  477. package/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +39 -0
  478. package/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +30 -0
  479. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +48 -0
  480. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +17 -0
  481. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +51 -0
  482. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
  483. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +37 -0
  484. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
  485. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +90 -0
  486. package/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +55 -0
  487. package/node_modules/ajv/lib/refs/json-schema-draft-06.json +137 -0
  488. package/node_modules/ajv/lib/refs/json-schema-draft-07.json +151 -0
  489. package/node_modules/ajv/lib/refs/json-schema-secure.json +88 -0
  490. package/node_modules/ajv/lib/refs/jtd-schema.ts +130 -0
  491. package/node_modules/ajv/lib/runtime/equal.ts +7 -0
  492. package/node_modules/ajv/lib/runtime/parseJson.ts +177 -0
  493. package/node_modules/ajv/lib/runtime/quote.ts +31 -0
  494. package/node_modules/ajv/lib/runtime/re2.ts +6 -0
  495. package/node_modules/ajv/lib/runtime/timestamp.ts +46 -0
  496. package/node_modules/ajv/lib/runtime/ucs2length.ts +20 -0
  497. package/node_modules/ajv/lib/runtime/uri.ts +6 -0
  498. package/node_modules/ajv/lib/runtime/validation_error.ts +13 -0
  499. package/node_modules/ajv/lib/standalone/index.ts +100 -0
  500. package/node_modules/ajv/lib/standalone/instance.ts +36 -0
  501. package/node_modules/ajv/lib/types/index.ts +244 -0
  502. package/node_modules/ajv/lib/types/json-schema.ts +187 -0
  503. package/node_modules/ajv/lib/types/jtd-schema.ts +273 -0
  504. package/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +56 -0
  505. package/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +118 -0
  506. package/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +22 -0
  507. package/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +14 -0
  508. package/node_modules/ajv/lib/vocabularies/applicator/contains.ts +109 -0
  509. package/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +112 -0
  510. package/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +11 -0
  511. package/node_modules/ajv/lib/vocabularies/applicator/if.ts +80 -0
  512. package/node_modules/ajv/lib/vocabularies/applicator/index.ts +53 -0
  513. package/node_modules/ajv/lib/vocabularies/applicator/items.ts +59 -0
  514. package/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +36 -0
  515. package/node_modules/ajv/lib/vocabularies/applicator/not.ts +38 -0
  516. package/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +82 -0
  517. package/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +91 -0
  518. package/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +12 -0
  519. package/node_modules/ajv/lib/vocabularies/applicator/properties.ts +57 -0
  520. package/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +50 -0
  521. package/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +13 -0
  522. package/node_modules/ajv/lib/vocabularies/code.ts +168 -0
  523. package/node_modules/ajv/lib/vocabularies/core/id.ts +10 -0
  524. package/node_modules/ajv/lib/vocabularies/core/index.ts +16 -0
  525. package/node_modules/ajv/lib/vocabularies/core/ref.ts +129 -0
  526. package/node_modules/ajv/lib/vocabularies/discriminator/index.ts +113 -0
  527. package/node_modules/ajv/lib/vocabularies/discriminator/types.ts +12 -0
  528. package/node_modules/ajv/lib/vocabularies/draft2020.ts +23 -0
  529. package/node_modules/ajv/lib/vocabularies/draft7.ts +17 -0
  530. package/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +31 -0
  531. package/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +51 -0
  532. package/node_modules/ajv/lib/vocabularies/dynamic/index.ts +9 -0
  533. package/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +14 -0
  534. package/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +10 -0
  535. package/node_modules/ajv/lib/vocabularies/errors.ts +18 -0
  536. package/node_modules/ajv/lib/vocabularies/format/format.ts +120 -0
  537. package/node_modules/ajv/lib/vocabularies/format/index.ts +6 -0
  538. package/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +89 -0
  539. package/node_modules/ajv/lib/vocabularies/jtd/elements.ts +32 -0
  540. package/node_modules/ajv/lib/vocabularies/jtd/enum.ts +45 -0
  541. package/node_modules/ajv/lib/vocabularies/jtd/error.ts +23 -0
  542. package/node_modules/ajv/lib/vocabularies/jtd/index.ts +37 -0
  543. package/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +24 -0
  544. package/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +21 -0
  545. package/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +15 -0
  546. package/node_modules/ajv/lib/vocabularies/jtd/properties.ts +184 -0
  547. package/node_modules/ajv/lib/vocabularies/jtd/ref.ts +76 -0
  548. package/node_modules/ajv/lib/vocabularies/jtd/type.ts +75 -0
  549. package/node_modules/ajv/lib/vocabularies/jtd/union.ts +12 -0
  550. package/node_modules/ajv/lib/vocabularies/jtd/values.ts +58 -0
  551. package/node_modules/ajv/lib/vocabularies/metadata.ts +17 -0
  552. package/node_modules/ajv/lib/vocabularies/next.ts +8 -0
  553. package/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +7 -0
  554. package/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +47 -0
  555. package/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +85 -0
  556. package/node_modules/ajv/lib/vocabularies/validation/const.ts +28 -0
  557. package/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +23 -0
  558. package/node_modules/ajv/lib/vocabularies/validation/enum.ts +54 -0
  559. package/node_modules/ajv/lib/vocabularies/validation/index.ts +49 -0
  560. package/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +16 -0
  561. package/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +26 -0
  562. package/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +30 -0
  563. package/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +42 -0
  564. package/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +26 -0
  565. package/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +34 -0
  566. package/node_modules/ajv/lib/vocabularies/validation/pattern.ts +28 -0
  567. package/node_modules/ajv/lib/vocabularies/validation/required.ts +98 -0
  568. package/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +79 -0
  569. package/node_modules/ajv/package.json +126 -0
  570. package/node_modules/fast-deep-equal/LICENSE +21 -0
  571. package/node_modules/fast-deep-equal/README.md +96 -0
  572. package/node_modules/fast-deep-equal/es6/index.d.ts +2 -0
  573. package/node_modules/fast-deep-equal/es6/index.js +72 -0
  574. package/node_modules/fast-deep-equal/es6/react.d.ts +2 -0
  575. package/node_modules/fast-deep-equal/es6/react.js +79 -0
  576. package/node_modules/fast-deep-equal/index.d.ts +4 -0
  577. package/node_modules/fast-deep-equal/index.js +46 -0
  578. package/node_modules/fast-deep-equal/package.json +61 -0
  579. package/node_modules/fast-deep-equal/react.d.ts +2 -0
  580. package/node_modules/fast-deep-equal/react.js +53 -0
  581. package/node_modules/fast-uri/.gitattributes +2 -0
  582. package/node_modules/fast-uri/.github/.stale.yml +21 -0
  583. package/node_modules/fast-uri/.github/dependabot.yml +13 -0
  584. package/node_modules/fast-uri/.github/tests_checker.yml +8 -0
  585. package/node_modules/fast-uri/.github/workflows/ci.yml +101 -0
  586. package/node_modules/fast-uri/.github/workflows/package-manager-ci.yml +24 -0
  587. package/node_modules/fast-uri/LICENSE +32 -0
  588. package/node_modules/fast-uri/README.md +143 -0
  589. package/node_modules/fast-uri/benchmark/benchmark.mjs +159 -0
  590. package/node_modules/fast-uri/benchmark/equal.mjs +51 -0
  591. package/node_modules/fast-uri/benchmark/non-simple-domain.mjs +22 -0
  592. package/node_modules/fast-uri/benchmark/package.json +17 -0
  593. package/node_modules/fast-uri/benchmark/string-array-to-hex-stripped.mjs +24 -0
  594. package/node_modules/fast-uri/benchmark/ws-is-secure.mjs +65 -0
  595. package/node_modules/fast-uri/eslint.config.js +6 -0
  596. package/node_modules/fast-uri/index.js +340 -0
  597. package/node_modules/fast-uri/lib/schemes.js +267 -0
  598. package/node_modules/fast-uri/lib/utils.js +336 -0
  599. package/node_modules/fast-uri/package.json +69 -0
  600. package/node_modules/fast-uri/test/ajv.test.js +43 -0
  601. package/node_modules/fast-uri/test/equal.test.js +108 -0
  602. package/node_modules/fast-uri/test/fixtures/uri-js-parse.json +501 -0
  603. package/node_modules/fast-uri/test/fixtures/uri-js-serialize.json +120 -0
  604. package/node_modules/fast-uri/test/parse.test.js +318 -0
  605. package/node_modules/fast-uri/test/resolve.test.js +78 -0
  606. package/node_modules/fast-uri/test/rfc-3986.test.js +90 -0
  607. package/node_modules/fast-uri/test/serialize.test.js +151 -0
  608. package/node_modules/fast-uri/test/uri-js-compatibility.test.js +33 -0
  609. package/node_modules/fast-uri/test/uri-js.test.js +912 -0
  610. package/node_modules/fast-uri/test/util.test.js +38 -0
  611. package/node_modules/fast-uri/tsconfig.json +9 -0
  612. package/node_modules/fast-uri/types/index.d.ts +60 -0
  613. package/node_modules/fast-uri/types/index.test-d.ts +17 -0
  614. package/node_modules/json-schema-traverse/.eslintrc.yml +27 -0
  615. package/node_modules/json-schema-traverse/.github/FUNDING.yml +2 -0
  616. package/node_modules/json-schema-traverse/.github/workflows/build.yml +28 -0
  617. package/node_modules/json-schema-traverse/.github/workflows/publish.yml +27 -0
  618. package/node_modules/json-schema-traverse/LICENSE +21 -0
  619. package/node_modules/json-schema-traverse/README.md +95 -0
  620. package/node_modules/json-schema-traverse/index.d.ts +40 -0
  621. package/node_modules/json-schema-traverse/index.js +93 -0
  622. package/node_modules/json-schema-traverse/package.json +43 -0
  623. package/node_modules/json-schema-traverse/spec/.eslintrc.yml +6 -0
  624. package/node_modules/json-schema-traverse/spec/fixtures/schema.js +125 -0
  625. package/node_modules/json-schema-traverse/spec/index.spec.js +171 -0
  626. package/node_modules/require-from-string/index.js +34 -0
  627. package/node_modules/require-from-string/license +21 -0
  628. package/node_modules/require-from-string/package.json +28 -0
  629. package/node_modules/require-from-string/readme.md +56 -0
  630. package/package.json +5 -2
  631. package/typedoc.jsonc +10 -0
@@ -0,0 +1,308 @@
1
+ <!DOCTYPE html><html class="default" lang="en" data-base="../"><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>AwsCdkConstructLibraryProject | @nikovirtala/projen-constructs</title><meta name="description" content="Documentation for @nikovirtala/projen-constructs"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => window.app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><a href="../index.html" class="title">@nikovirtala/projen-constructs</a><div id="tsd-toolbar-links"></div><button id="tsd-search-trigger" class="tsd-widget" aria-label="Search"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-search"></use></svg></button><dialog id="tsd-search" aria-label="Search"><input role="combobox" id="tsd-search-input" aria-controls="tsd-search-results" aria-autocomplete="list" aria-expanded="true" autocapitalize="off" autocomplete="off" placeholder="Search the docs" maxLength="100"/><ul role="listbox" id="tsd-search-results"></ul><div id="tsd-search-status" aria-live="polite" aria-atomic="true"><div>Preparing search index...</div></div></dialog><a href="#" class="tsd-widget menu" id="tsd-toolbar-menu-trigger" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb" aria-label="Breadcrumb"><li><a href="" aria-current="page">AwsCdkConstructLibraryProject</a></li></ul><h1>Class AwsCdkConstructLibraryProject</h1></div><section class="tsd-panel tsd-comment"><div class="tsd-comment tsd-typography"><p>AwsCdkConstructLibraryProject with standard configuration and component integration</p>
2
+ <p>Extends Projen's base class with opinionated defaults and automatic component setup.</p>
3
+ </div></section><section class="tsd-panel tsd-hierarchy" data-refl="413"><h4>Hierarchy</h4><ul class="tsd-hierarchy"><li class="tsd-hierarchy-item"><span class="tsd-signature-type">AwsCdkConstructLibrary</span><ul class="tsd-hierarchy"><li class="tsd-hierarchy-item"><span class="tsd-hierarchy-target">AwsCdkConstructLibraryProject</span></li></ul></li></ul></section><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h5 class="tsd-index-heading uppercase">Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Constructors</h3><div class="tsd-index-list"><a href="#constructor" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Constructor"><use href="../assets/icons.svg#icon-512"></use></svg><span>constructor</span></a>
4
+ </div></section><section class="tsd-index-section"><h3 class="tsd-index-heading">Properties</h3><div class="tsd-index-list"><a href="#artifactsdirectory" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>artifacts<wbr/>Directory</span></a>
5
+ <a href="#artifactsjavascriptdirectory" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>artifacts<wbr/>Javascript<wbr/>Directory</span></a>
6
+ <a href="#autoapprove" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>auto<wbr/>Approve?</span></a>
7
+ <a href="#automerge" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>auto<wbr/>Merge?</span></a>
8
+ <a href="#biome" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>biome?</span></a>
9
+ <a href="#buildworkflow" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>build<wbr/>Workflow?</span></a>
10
+ <a href="#bundler" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>bundler</span></a>
11
+ <a href="#cdkdeps" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>cdk<wbr/>Deps</span></a>
12
+ <a href="#commitgenerated" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>commit<wbr/>Generated</span></a>
13
+ <a href="#defaulttask" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>default<wbr/>Task?</span></a>
14
+ <a href="#deps" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>deps</span></a>
15
+ <a href="#devcontainer" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>dev<wbr/>Container</span></a>
16
+ <a href="#docgen" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>docgen?</span></a>
17
+ <a href="#docsdirectory" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>docs<wbr/>Directory</span></a>
18
+ <a href="#eslint" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>eslint?</span></a>
19
+ <a href="#gitattributes" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>gitattributes</span></a>
20
+ <a href="#github" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>github</span></a>
21
+ <a href="#gitignore" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>gitignore</span></a>
22
+ <a href="#gitpod" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>gitpod</span></a>
23
+ <a href="#initproject" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>init<wbr/>Project?</span></a>
24
+ <a href="#jest" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>jest?</span></a>
25
+ <a href="#libdir" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>libdir</span></a>
26
+ <a href="#logger" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>logger</span></a>
27
+ <a href="#name" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>name</span></a>
28
+ <a href="#node" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>node</span></a>
29
+ <a href="#nodeversion" class="tsd-index-link tsd-is-protected tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>node<wbr/>Version?</span></a>
30
+ <a href="#npmignore" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>npmignore?</span></a>
31
+ <a href="#outdir" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>outdir</span></a>
32
+ <a href="#package" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>package</span></a>
33
+ <a href="#parent" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>parent?</span></a>
34
+ <a href="#prettier" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>prettier?</span></a>
35
+ <a href="#projectbuild" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>project<wbr/>Build</span></a>
36
+ <a href="#projecttype" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>project<wbr/>Type</span></a>
37
+ <a href="#publisher" class="tsd-index-link deprecated tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>publisher?</span></a>
38
+ <a href="#release" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>release?</span></a>
39
+ <a href="#runscriptcommand" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>run<wbr/>Script<wbr/>Command</span></a>
40
+ <a href="#srcdir" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>srcdir</span></a>
41
+ <a href="#tasks" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>tasks</span></a>
42
+ <a href="#testdir" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>testdir</span></a>
43
+ <a href="#tsconfig" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>tsconfig?</span></a>
44
+ <a href="#tsconfigdev" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>tsconfig<wbr/>Dev</span></a>
45
+ <a href="#tsconfigeslint" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>tsconfig<wbr/>Eslint?</span></a>
46
+ <a href="#upgradeworkflow" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>upgrade<wbr/>Workflow?</span></a>
47
+ <a href="#vscode" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>vscode</span></a>
48
+ <a href="#watchtask" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>watch<wbr/>Task</span></a>
49
+ <a href="#workflowbootstrapsteps" class="tsd-index-link tsd-is-protected tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>workflow<wbr/>Bootstrap<wbr/>Steps</span></a>
50
+ <a href="#workflowpackagecache" class="tsd-index-link tsd-is-protected tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>workflow<wbr/>Package<wbr/>Cache</span></a>
51
+ <a href="#default_task" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>DEFAULT_<wbr/>TASK</span></a>
52
+ <a href="#default_ts_jest_tranform_pattern" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>DEFAULT_<wbr/>TS_<wbr/>JEST_<wbr/>TRANFORM_<wbr/>PATTERN</span></a>
53
+ </div></section><section class="tsd-index-section"><h3 class="tsd-index-heading">Accessors</h3><div class="tsd-index-list"><a href="#allowlibrarydependencies" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>allow<wbr/>Library<wbr/>Dependencies</span></a>
54
+ <a href="#buildtask" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>build<wbr/>Task</span></a>
55
+ <a href="#buildworkflowjobid" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>build<wbr/>Workflow<wbr/>Job<wbr/>Id</span></a>
56
+ <a href="#cdkversion" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>cdk<wbr/>Version</span></a>
57
+ <a href="#compiletask" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>compile<wbr/>Task</span></a>
58
+ <a href="#components" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>components</span></a>
59
+ <a href="#ejected" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>ejected</span></a>
60
+ <a href="#entrypoint" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>entrypoint</span></a>
61
+ <a href="#files" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>files</span></a>
62
+ <a href="#manifest" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>manifest</span></a>
63
+ <a href="#maxnodeversion" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>max<wbr/>Node<wbr/>Version</span></a>
64
+ <a href="#minnodeversion" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>min<wbr/>Node<wbr/>Version</span></a>
65
+ <a href="#npmrc" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>npmrc</span></a>
66
+ <a href="#packagemanager" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>package<wbr/>Manager</span></a>
67
+ <a href="#packagetask" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>package<wbr/>Task</span></a>
68
+ <a href="#postcompiletask" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>post<wbr/>Compile<wbr/>Task</span></a>
69
+ <a href="#precompiletask" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>pre<wbr/>Compile<wbr/>Task</span></a>
70
+ <a href="#projencommand" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>projen<wbr/>Command</span></a>
71
+ <a href="#root" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>root</span></a>
72
+ <a href="#subprojects" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>subprojects</span></a>
73
+ <a href="#testtask" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>test<wbr/>Task</span></a>
74
+ <a href="#version" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>version</span></a>
75
+ </div></section><section class="tsd-index-section"><h3 class="tsd-index-heading">Methods</h3><div class="tsd-index-list"><a href="#addbins" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Bins</span></a>
76
+ <a href="#addbundleddeps" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Bundled<wbr/>Deps</span></a>
77
+ <a href="#addcdkdependencies" class="tsd-index-link deprecated tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Cdk<wbr/>Dependencies</span></a>
78
+ <a href="#addcdktestdependencies" class="tsd-index-link deprecated tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Cdk<wbr/>Test<wbr/>Dependencies</span></a>
79
+ <a href="#addcompilecommand" class="tsd-index-link deprecated tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Compile<wbr/>Command</span></a>
80
+ <a href="#adddeps" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Deps</span></a>
81
+ <a href="#adddevdeps" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Dev<wbr/>Deps</span></a>
82
+ <a href="#addexcludefromcleanup" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Exclude<wbr/>From<wbr/>Cleanup</span></a>
83
+ <a href="#addfields" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Fields</span></a>
84
+ <a href="#addgitignore" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Git<wbr/>Ignore</span></a>
85
+ <a href="#addkeywords" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Keywords</span></a>
86
+ <a href="#addpackageignore" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Package<wbr/>Ignore</span></a>
87
+ <a href="#addpeerdeps" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Peer<wbr/>Deps</span></a>
88
+ <a href="#addscripts" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Scripts</span></a>
89
+ <a href="#addtask" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Task</span></a>
90
+ <a href="#addtestcommand" class="tsd-index-link deprecated tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Test<wbr/>Command</span></a>
91
+ <a href="#addtip" class="tsd-index-link deprecated tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Tip</span></a>
92
+ <a href="#annotategenerated" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>annotate<wbr/>Generated</span></a>
93
+ <a href="#defaulttypescriptcompileroptions" class="tsd-index-link tsd-is-protected tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>default<wbr/>Type<wbr/>Script<wbr/>Compiler<wbr/>Options</span></a>
94
+ <a href="#hasscript" class="tsd-index-link deprecated tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>has<wbr/>Script</span></a>
95
+ <a href="#postsynthesize" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>post<wbr/>Synthesize</span></a>
96
+ <a href="#presynthesize" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>pre<wbr/>Synthesize</span></a>
97
+ <a href="#removescript" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>remove<wbr/>Script</span></a>
98
+ <a href="#removetask" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>remove<wbr/>Task</span></a>
99
+ <a href="#renderworkflowsetup" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>render<wbr/>Workflow<wbr/>Setup</span></a>
100
+ <a href="#runtaskcommand" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>run<wbr/>Task<wbr/>Command</span></a>
101
+ <a href="#setscript" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>set<wbr/>Script</span></a>
102
+ <a href="#synth" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>synth</span></a>
103
+ <a href="#tostring" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>to<wbr/>String</span></a>
104
+ <a href="#tryfindfile" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>try<wbr/>Find<wbr/>File</span></a>
105
+ <a href="#tryfindjsonfile" class="tsd-index-link deprecated tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>try<wbr/>Find<wbr/>Json<wbr/>File</span></a>
106
+ <a href="#tryfindobjectfile" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>try<wbr/>Find<wbr/>Object<wbr/>File</span></a>
107
+ <a href="#tryremovefile" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>try<wbr/>Remove<wbr/>File</span></a>
108
+ <a href="#isconstruct" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>is<wbr/>Construct</span></a>
109
+ <a href="#isproject" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>is<wbr/>Project</span></a>
110
+ <a href="#of" class="tsd-index-link tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>of</span></a>
111
+ </div></section></div></details></section></section><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Constructors"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h2>Constructors</h2></summary><section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="constructor"><span>constructor</span><a href="#constructor" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class=""><div class="tsd-signature tsd-anchor-link" id="constructorawscdkconstructlibraryproject"><span class="tsd-signature-keyword">new</span> <span class="tsd-kind-constructor-signature">AwsCdkConstructLibraryProject</span><span class="tsd-signature-symbol">(</span><br/>    <span class="tsd-kind-parameter">options</span><span class="tsd-signature-symbol">:</span> <a href="../interfaces/AwsCdkConstructLibraryProjectOptions.html" class="tsd-signature-type tsd-kind-interface">AwsCdkConstructLibraryProjectOptions</a><span class="tsd-signature-symbol">,</span><br/><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <a href="" class="tsd-signature-type tsd-kind-class">AwsCdkConstructLibraryProject</a><a href="#constructorawscdkconstructlibraryproject" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">options</span>: <a href="../interfaces/AwsCdkConstructLibraryProjectOptions.html" class="tsd-signature-type tsd-kind-interface">AwsCdkConstructLibraryProjectOptions</a></span><div class="tsd-comment tsd-typography"><p>Project configuration</p>
112
+ </div></li></ul></div><h4 class="tsd-returns-title">Returns <a href="" class="tsd-signature-type tsd-kind-class">AwsCdkConstructLibraryProject</a></h4><aside class="tsd-sources"><p>Overrides awscdk.AwsCdkConstructLibrary.constructor</p></aside></div></li></ul></section></section></details><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Properties"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h2>Properties</h2></summary><section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="artifactsdirectory"><code class="tsd-tag">Readonly</code><span>artifacts<wbr/>Directory</span><a href="#artifactsdirectory" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">artifactsDirectory</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-comment tsd-typography"><p>The build output directory. An npm tarball will be created under the <code>js</code>
113
+ subdirectory. For example, if this is set to <code>dist</code> (the default), the npm
114
+ tarball will be placed under <code>dist/js/boom-boom-1.2.3.tg</code>.</p>
115
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.artifactsDirectory</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="artifactsjavascriptdirectory"><code class="tsd-tag">Readonly</code><span>artifacts<wbr/>Javascript<wbr/>Directory</span><a href="#artifactsjavascriptdirectory" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">artifactsJavascriptDirectory</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-comment tsd-typography"><p>The location of the npm tarball after build (<code>${artifactsDirectory}/js</code>).</p>
116
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.artifactsJavascriptDirectory</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="autoapprove"><code class="tsd-tag">Optional</code> <code class="tsd-tag">Readonly</code><span>auto<wbr/>Approve</span><a href="#autoapprove" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">autoApprove</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">AutoApprove</span></div><div class="tsd-comment tsd-typography"><p>Auto approve set up for this project.</p>
117
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.autoApprove</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="automerge"><code class="tsd-tag">Optional</code> <code class="tsd-tag">Readonly</code><span>auto<wbr/>Merge</span><a href="#automerge" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">autoMerge</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">AutoMerge</span></div><div class="tsd-comment tsd-typography"><p>Component that sets up mergify for merging approved pull requests.</p>
118
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.autoMerge</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="biome"><code class="tsd-tag">Optional</code> <code class="tsd-tag">Readonly</code><span>biome</span><a href="#biome" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">biome</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">Biome</span></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.biome</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="buildworkflow"><code class="tsd-tag">Optional</code> <code class="tsd-tag">Readonly</code><span>build<wbr/>Workflow</span><a href="#buildworkflow" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">buildWorkflow</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">BuildWorkflow</span></div><div class="tsd-comment tsd-typography"><p>The PR build GitHub workflow. <code>undefined</code> if <code>buildWorkflow</code> is disabled.</p>
119
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.buildWorkflow</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="bundler"><code class="tsd-tag">Readonly</code><span>bundler</span><a href="#bundler" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">bundler</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Bundler</span></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.bundler</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="cdkdeps"><code class="tsd-tag">Readonly</code><span>cdk<wbr/>Deps</span><a href="#cdkdeps" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">cdkDeps</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">AwsCdkDeps</span></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.cdkDeps</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="commitgenerated"><code class="tsd-tag">Readonly</code><span>commit<wbr/>Generated</span><a href="#commitgenerated" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">commitGenerated</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div><div class="tsd-comment tsd-typography"><p>Whether to commit the managed files by default.</p>
120
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.commitGenerated</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="defaulttask"><code class="tsd-tag">Optional</code> <code class="tsd-tag">Readonly</code><span>default<wbr/>Task</span><a href="#defaulttask" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">defaultTask</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">Task</span></div><div class="tsd-comment tsd-typography"><p>This is the &quot;default&quot; task, the one that executes &quot;projen&quot;. Undefined if
121
+ the project is being ejected.</p>
122
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.defaultTask</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="deps"><code class="tsd-tag">Readonly</code><span>deps</span><a href="#deps" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">deps</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Dependencies</span></div><div class="tsd-comment tsd-typography"><p>Project dependencies.</p>
123
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.deps</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="devcontainer"><code class="tsd-tag">Readonly</code><span>dev<wbr/>Container</span><a href="#devcontainer" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">devContainer</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">DevContainer</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><div class="tsd-comment tsd-typography"><p>Access for .devcontainer.json (used for GitHub Codespaces)</p>
124
+ <p>This will be <code>undefined</code> if devContainer boolean is false</p>
125
+ </div><aside class="tsd-sources"><p>Inherited from <a href="AwsCdkTypeScriptAppProject.html">AwsCdkTypeScriptAppProject</a>.<a href="AwsCdkTypeScriptAppProject.html#devcontainer">devContainer</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="docgen"><code class="tsd-tag">Optional</code> <code class="tsd-tag">Readonly</code><span>docgen</span><a href="#docgen" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">docgen</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">boolean</span></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.docgen</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="docsdirectory"><code class="tsd-tag">Readonly</code><span>docs<wbr/>Directory</span><a href="#docsdirectory" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">docsDirectory</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.docsDirectory</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="eslint"><code class="tsd-tag">Optional</code> <code class="tsd-tag">Readonly</code><span>eslint</span><a href="#eslint" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">eslint</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">Eslint</span></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.eslint</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="gitattributes"><code class="tsd-tag">Readonly</code><span>gitattributes</span><a href="#gitattributes" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">gitattributes</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">GitAttributesFile</span></div><div class="tsd-comment tsd-typography"><p>The .gitattributes file for this repository.</p>
126
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.gitattributes</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="github"><code class="tsd-tag">Readonly</code><span>github</span><a href="#github" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">github</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">GitHub</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><div class="tsd-comment tsd-typography"><p>Access all github components.</p>
127
+ <p>This will be <code>undefined</code> for subprojects.</p>
128
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.github</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="gitignore"><code class="tsd-tag">Readonly</code><span>gitignore</span><a href="#gitignore" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">gitignore</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">IgnoreFile</span></div><div class="tsd-comment tsd-typography"><p>.gitignore</p>
129
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.gitignore</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="gitpod"><code class="tsd-tag">Readonly</code><span>gitpod</span><a href="#gitpod" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">gitpod</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Gitpod</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><div class="tsd-comment tsd-typography"><p>Access for Gitpod</p>
130
+ <p>This will be <code>undefined</code> if gitpod boolean is false</p>
131
+ </div><aside class="tsd-sources"><p>Inherited from <a href="AwsCdkTypeScriptAppProject.html">AwsCdkTypeScriptAppProject</a>.<a href="AwsCdkTypeScriptAppProject.html#gitpod">gitpod</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="initproject"><code class="tsd-tag">Optional</code> <code class="tsd-tag">Readonly</code><span>init<wbr/>Project</span><a href="#initproject" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">initProject</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">InitProject</span></div><div class="tsd-comment tsd-typography"><p>The options used when this project is bootstrapped via <code>projen new</code>. It
132
+ includes the original set of options passed to the CLI and also the JSII
133
+ FQN of the project type.</p>
134
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.initProject</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="jest"><code class="tsd-tag">Optional</code> <code class="tsd-tag">Readonly</code><span>jest</span><a href="#jest" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">jest</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">Jest</span></div><div class="tsd-comment tsd-typography"><p>The Jest configuration (if enabled)</p>
135
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.jest</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="libdir"><code class="tsd-tag">Readonly</code><span>libdir</span><a href="#libdir" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">libdir</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-comment tsd-typography"><p>The directory in which compiled .js files reside.</p>
136
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.libdir</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="logger"><code class="tsd-tag">Readonly</code><span>logger</span><a href="#logger" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">logger</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Logger</span></div><div class="tsd-comment tsd-typography"><p>Logging utilities.</p>
137
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.logger</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="name"><code class="tsd-tag">Readonly</code><span>name</span><a href="#name" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">name</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-comment tsd-typography"><p>Project name.</p>
138
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.name</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="node"><code class="tsd-tag">Readonly</code><span>node</span><a href="#node" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">node</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Node</span></div><div class="tsd-comment tsd-typography"><p>The tree node.</p>
139
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.node</p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="nodeversion"><code class="tsd-tag">Protected</code> <code class="tsd-tag">Optional</code> <code class="tsd-tag">Readonly</code><span>node<wbr/>Version</span><a href="#nodeversion" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">nodeVersion</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.nodeVersion</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="npmignore"><code class="tsd-tag">Optional</code> <code class="tsd-tag">Readonly</code><span>npmignore</span><a href="#npmignore" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">npmignore</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">IgnoreFile</span></div><div class="tsd-comment tsd-typography"><p>The .npmignore file.</p>
140
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.npmignore</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="outdir"><code class="tsd-tag">Readonly</code><span>outdir</span><a href="#outdir" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">outdir</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-comment tsd-typography"><p>Absolute output directory of this project.</p>
141
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.outdir</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="package"><code class="tsd-tag">Readonly</code><span>package</span><a href="#package" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">package</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">NodePackage</span></div><div class="tsd-comment tsd-typography"><p>API for managing the node package.</p>
142
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.package</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="parent"><code class="tsd-tag">Optional</code> <code class="tsd-tag">Readonly</code><span>parent</span><a href="#parent" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">parent</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">Project</span></div><div class="tsd-comment tsd-typography"><p>A parent project. If undefined, this is the root project.</p>
143
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.parent</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="prettier"><code class="tsd-tag">Optional</code> <code class="tsd-tag">Readonly</code><span>prettier</span><a href="#prettier" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">prettier</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">Prettier</span></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.prettier</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="projectbuild"><code class="tsd-tag">Readonly</code><span>project<wbr/>Build</span><a href="#projectbuild" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">projectBuild</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">ProjectBuild</span></div><div class="tsd-comment tsd-typography"><p>Manages the build process of the project.</p>
144
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.projectBuild</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="projecttype"><code class="tsd-tag">Readonly</code><span>project<wbr/>Type</span><a href="#projecttype" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">projectType</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">ProjectType</span></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.projectType</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="publisher"><code class="tsd-tag">Optional</code> <code class="tsd-tag">Readonly</code><span class="deprecated">publisher</span><a href="#publisher" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">publisher</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">Publisher</span></div><div class="tsd-comment tsd-typography"><p>Package publisher. This will be <code>undefined</code> if the project does not have a
145
+ release workflow.</p>
146
+ </div><div class="tsd-comment tsd-typography"><div class="tsd-tag-deprecated"><h4 class="tsd-anchor-link" id="deprecated">Deprecated<a href="#deprecated" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><p>use <code>release.publisher</code>.</p>
147
+ </div></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.publisher</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="release"><code class="tsd-tag">Optional</code> <code class="tsd-tag">Readonly</code><span>release</span><a href="#release" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">release</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">Release</span></div><div class="tsd-comment tsd-typography"><p>Release management.</p>
148
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.release</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="runscriptcommand"><code class="tsd-tag">Readonly</code><span>run<wbr/>Script<wbr/>Command</span><a href="#runscriptcommand" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">runScriptCommand</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-comment tsd-typography"><p>The command to use to run scripts (e.g. <code>yarn run</code> or <code>npm run</code> depends on the package manager).</p>
149
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.runScriptCommand</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="srcdir"><code class="tsd-tag">Readonly</code><span>srcdir</span><a href="#srcdir" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">srcdir</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-comment tsd-typography"><p>The directory in which the .ts sources reside.</p>
150
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.srcdir</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="tasks"><code class="tsd-tag">Readonly</code><span>tasks</span><a href="#tasks" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">tasks</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Tasks</span></div><div class="tsd-comment tsd-typography"><p>Project tasks.</p>
151
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.tasks</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="testdir"><code class="tsd-tag">Readonly</code><span>testdir</span><a href="#testdir" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">testdir</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-comment tsd-typography"><p>The directory in which tests reside.</p>
152
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.testdir</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="tsconfig"><code class="tsd-tag">Optional</code> <code class="tsd-tag">Readonly</code><span>tsconfig</span><a href="#tsconfig" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">tsconfig</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">TypescriptConfig</span></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.tsconfig</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="tsconfigdev"><code class="tsd-tag">Readonly</code><span>tsconfig<wbr/>Dev</span><a href="#tsconfigdev" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">tsconfigDev</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">TypescriptConfig</span></div><div class="tsd-comment tsd-typography"><p>A typescript configuration file which covers all files (sources, tests, projen).</p>
153
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.tsconfigDev</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="tsconfigeslint"><code class="tsd-tag">Optional</code> <code class="tsd-tag">Readonly</code><span>tsconfig<wbr/>Eslint</span><a href="#tsconfigeslint" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">tsconfigEslint</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">TypescriptConfig</span></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.tsconfigEslint</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="upgradeworkflow"><code class="tsd-tag">Optional</code> <code class="tsd-tag">Readonly</code><span>upgrade<wbr/>Workflow</span><a href="#upgradeworkflow" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">upgradeWorkflow</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">UpgradeDependencies</span></div><div class="tsd-comment tsd-typography"><p>The upgrade workflow.</p>
154
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.upgradeWorkflow</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="vscode"><code class="tsd-tag">Readonly</code><span>vscode</span><a href="#vscode" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">vscode</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">VsCode</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><div class="tsd-comment tsd-typography"><p>Access all VSCode components.</p>
155
+ <p>This will be <code>undefined</code> for subprojects.</p>
156
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.vscode</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="watchtask"><code class="tsd-tag">Readonly</code><span>watch<wbr/>Task</span><a href="#watchtask" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">watchTask</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Task</span></div><div class="tsd-comment tsd-typography"><p>The &quot;watch&quot; task.</p>
157
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.watchTask</p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="workflowbootstrapsteps"><code class="tsd-tag">Protected</code> <code class="tsd-tag">Readonly</code><span>workflow<wbr/>Bootstrap<wbr/>Steps</span><a href="#workflowbootstrapsteps" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">workflowBootstrapSteps</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">JobStep</span><span class="tsd-signature-symbol">[]</span></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.workflowBootstrapSteps</p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="workflowpackagecache"><code class="tsd-tag">Protected</code> <code class="tsd-tag">Readonly</code><span>workflow<wbr/>Package<wbr/>Cache</span><a href="#workflowpackagecache" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">workflowPackageCache</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.workflowPackageCache</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="default_task"><code class="tsd-tag">Static</code> <code class="tsd-tag">Readonly</code><span>DEFAULT_<wbr/>TASK</span><a href="#default_task" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">DEFAULT_TASK</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;default&quot;</span></div><div class="tsd-comment tsd-typography"><p>The name of the default task (the task executed when <code>projen</code> is run without arguments). Normally
158
+ this task should synthesize the project files.</p>
159
+ </div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.DEFAULT_TASK</p></aside></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="default_ts_jest_tranform_pattern"><code class="tsd-tag">Static</code> <code class="tsd-tag">Readonly</code><span>DEFAULT_<wbr/>TS_<wbr/>JEST_<wbr/>TRANFORM_<wbr/>PATTERN</span><a href="#default_ts_jest_tranform_pattern" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">DEFAULT_TS_JEST_TRANFORM_PATTERN</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;^.+\\.[t]sx?$&quot;</span></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.DEFAULT_TS_JEST_TRANFORM_PATTERN</p></aside></section></section></details><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Accessors"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h2>Accessors</h2></summary><section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="allowlibrarydependencies"><span>allow<wbr/>Library<wbr/>Dependencies</span><a href="#allowlibrarydependencies" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li><div class="tsd-signature" id="allowlibrarydependenciesallowlibrarydependencies"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">allowLibraryDependencies</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><div class="tsd-comment tsd-typography"><div class="tsd-tag-deprecated"><h4 class="tsd-anchor-link" id="deprecated-1">Deprecated<a href="#deprecated-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><p>use <code>package.allowLibraryDependencies</code></p>
160
+ </div></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.allowLibraryDependencies</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="buildtask"><span>build<wbr/>Task</span><a href="#buildtask" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li><div class="tsd-signature" id="buildtaskbuildtask"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">buildTask</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Task</span></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Task</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.buildTask</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="buildworkflowjobid"><span>build<wbr/>Workflow<wbr/>Job<wbr/>Id</span><a href="#buildworkflowjobid" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li><div class="tsd-signature" id="buildworkflowjobidbuildworkflowjobid"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">buildWorkflowJobId</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>The job ID of the build workflow.</p>
161
+ </div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></h4><aside class="tsd-sources"><p>Inherited from <a href="AwsCdkTypeScriptAppProject.html">AwsCdkTypeScriptAppProject</a>.<a href="AwsCdkTypeScriptAppProject.html#buildworkflowjobid">buildWorkflowJobId</a></p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="cdkversion"><span>cdk<wbr/>Version</span><a href="#cdkversion" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li><div class="tsd-signature" id="cdkversioncdkversion"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">cdkVersion</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>The target CDK version for this library.</p>
162
+ </div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.cdkVersion</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="compiletask"><span>compile<wbr/>Task</span><a href="#compiletask" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li><div class="tsd-signature" id="compiletaskcompiletask"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">compileTask</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Task</span></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Task</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.compileTask</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="components"><span>components</span><a href="#components" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li><div class="tsd-signature" id="componentscomponents"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">components</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Component</span><span class="tsd-signature-symbol">[]</span></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Returns all the components within this project.</p>
163
+ </div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Component</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.components</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="ejected"><span>ejected</span><a href="#ejected" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li><div class="tsd-signature" id="ejectedejected"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">ejected</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Whether or not the project is being ejected.</p>
164
+ </div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.ejected</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="entrypoint"><span>entrypoint</span><a href="#entrypoint" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li><div class="tsd-signature" id="entrypointentrypoint"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">entrypoint</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><div class="tsd-comment tsd-typography"><div class="tsd-tag-deprecated"><h4 class="tsd-anchor-link" id="deprecated-2">Deprecated<a href="#deprecated-2" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><p>use <code>package.entrypoint</code></p>
165
+ </div></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.entrypoint</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="files"><span>files</span><a href="#files" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li><div class="tsd-signature" id="filesfiles"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">files</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">FileBase</span><span class="tsd-signature-symbol">[]</span></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>All files in this project.</p>
166
+ </div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">FileBase</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.files</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="manifest"><span>manifest</span><a href="#manifest" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li><div class="tsd-signature" id="manifestmanifest"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">manifest</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span></h4><div class="tsd-comment tsd-typography"><div class="tsd-tag-deprecated"><h4 class="tsd-anchor-link" id="deprecated-3">Deprecated<a href="#deprecated-3" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><p>use <code>package.addField(x, y)</code></p>
167
+ </div></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.manifest</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="maxnodeversion"><span>max<wbr/>Node<wbr/>Version</span><a href="#maxnodeversion" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li><div class="tsd-signature" id="maxnodeversionmaxnodeversion"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">maxNodeVersion</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Maximum node version supported by this package.</p>
168
+ <p>The value indicates the package is incompatible with newer versions.</p>
169
+ </div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></h4><aside class="tsd-sources"><p>Inherited from <a href="AwsCdkTypeScriptAppProject.html">AwsCdkTypeScriptAppProject</a>.<a href="AwsCdkTypeScriptAppProject.html#maxnodeversion">maxNodeVersion</a></p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="minnodeversion"><span>min<wbr/>Node<wbr/>Version</span><a href="#minnodeversion" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li><div class="tsd-signature" id="minnodeversionminnodeversion"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">minNodeVersion</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>The minimum node version required by this package to function.</p>
170
+ <p>This value indicates the package is incompatible with older versions.</p>
171
+ </div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></h4><aside class="tsd-sources"><p>Inherited from <a href="AwsCdkTypeScriptAppProject.html">AwsCdkTypeScriptAppProject</a>.<a href="AwsCdkTypeScriptAppProject.html#minnodeversion">minNodeVersion</a></p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="npmrc"><span>npmrc</span><a href="#npmrc" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li><div class="tsd-signature" id="npmrcnpmrc"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">npmrc</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">NpmConfig</span></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>The .npmrc file</p>
172
+ </div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">NpmConfig</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.npmrc</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="packagemanager"><span>package<wbr/>Manager</span><a href="#packagemanager" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li><div class="tsd-signature" id="packagemanagerpackagemanager"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">packageManager</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">NodePackageManager</span></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>The package manager to use.</p>
173
+ </div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">NodePackageManager</span></h4><div class="tsd-comment tsd-typography"><div class="tsd-tag-deprecated"><h4 class="tsd-anchor-link" id="deprecated-4">Deprecated<a href="#deprecated-4" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><p>use <code>package.packageManager</code></p>
174
+ </div></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.packageManager</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="packagetask"><span>package<wbr/>Task</span><a href="#packagetask" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li><div class="tsd-signature" id="packagetaskpackagetask"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">packageTask</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Task</span></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Task</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.packageTask</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="postcompiletask"><span>post<wbr/>Compile<wbr/>Task</span><a href="#postcompiletask" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li><div class="tsd-signature" id="postcompiletaskpostcompiletask"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">postCompileTask</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Task</span></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Task</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.postCompileTask</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="precompiletask"><span>pre<wbr/>Compile<wbr/>Task</span><a href="#precompiletask" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li><div class="tsd-signature" id="precompiletaskprecompiletask"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">preCompileTask</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Task</span></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Task</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.preCompileTask</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="projencommand"><span>projen<wbr/>Command</span><a href="#projencommand" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li><div class="tsd-signature" id="projencommandprojencommand"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">projenCommand</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>The command to use in order to run the projen CLI.</p>
175
+ </div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.projenCommand</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="root"><span>root</span><a href="#root" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li><div class="tsd-signature" id="rootroot"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">root</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Project</span></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>The root project.</p>
176
+ </div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Project</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.root</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="subprojects"><span>subprojects</span><a href="#subprojects" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li><div class="tsd-signature" id="subprojectssubprojects"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">subprojects</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Project</span><span class="tsd-signature-symbol">[]</span></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Returns all the subprojects within this project.</p>
177
+ </div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Project</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.subprojects</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="testtask"><span>test<wbr/>Task</span><a href="#testtask" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li><div class="tsd-signature" id="testtasktesttask"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">testTask</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Task</span></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Task</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.testTask</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="version"><span>version</span><a href="#version" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li><div class="tsd-signature" id="versionversion"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">version</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><div class="tsd-comment tsd-typography"><div class="tsd-tag-deprecated"><h4 class="tsd-anchor-link" id="deprecated-5">Deprecated<a href="#deprecated-5" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><p>use <code>cdkVersion</code></p>
178
+ </div></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.version</p></aside></div></li></ul></section></section></details><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Methods"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h2>Methods</h2></summary><section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="addbins"><span>add<wbr/>Bins</span><a href="#addbins" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="addbins-1"><span class="tsd-kind-call-signature">addBins</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">bins</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Record</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">,</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#addbins-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">bins</span>: <span class="tsd-signature-type">Record</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">,</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">&gt;</span></span></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.addBins</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="addbundleddeps"><span>add<wbr/>Bundled<wbr/>Deps</span><a href="#addbundleddeps" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="addbundleddeps-1"><span class="tsd-kind-call-signature">addBundledDeps</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">deps</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#addbundleddeps-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Defines bundled dependencies.</p>
179
+ <p>Bundled dependencies will be added as normal dependencies as well as to the
180
+ <code>bundledDependencies</code> section of your <code>package.json</code>.</p>
181
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">deps</span>: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></span><div class="tsd-comment tsd-typography"><p>Names modules to install. By default, the the dependency will
182
+ be installed in the next <code>npx projen</code> run and the version will be recorded
183
+ in your <code>package.json</code> file. You can upgrade manually or using <code>yarn add/upgrade</code>. If you wish to specify a version range use this syntax:
184
+ <code>module@^7</code>.</p>
185
+ </div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.addBundledDeps</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="addcdkdependencies"><span class="deprecated">add<wbr/>Cdk<wbr/>Dependencies</span><a href="#addcdkdependencies" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="addcdkdependencies-1"><span class="tsd-kind-call-signature">addCdkDependencies</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">deps</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#addcdkdependencies-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Adds dependencies to AWS CDK modules.</p>
186
+ <p>Since this is a library project, dependencies will be added as peer dependencies.</p>
187
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">deps</span>: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></span><div class="tsd-comment tsd-typography"><p>names of cdk modules (e.g. <code>@aws-cdk/aws-lambda</code>).</p>
188
+ </div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><div class="tsd-comment tsd-typography"><div class="tsd-tag-deprecated"><h4 class="tsd-anchor-link" id="deprecated-6">Deprecated<a href="#deprecated-6" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><p>Not supported in v2. For v1, use <code>project.cdkDeps.addV1Dependencies()</code></p>
189
+ </div></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.addCdkDependencies</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="addcdktestdependencies"><span class="deprecated">add<wbr/>Cdk<wbr/>Test<wbr/>Dependencies</span><a href="#addcdktestdependencies" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="addcdktestdependencies-1"><span class="tsd-kind-call-signature">addCdkTestDependencies</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">deps</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#addcdktestdependencies-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Adds AWS CDK modules as dev dependencies.</p>
190
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">deps</span>: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></span><div class="tsd-comment tsd-typography"><p>names of cdk modules (e.g. <code>@aws-cdk/aws-lambda</code>).</p>
191
+ </div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><div class="tsd-comment tsd-typography"><div class="tsd-tag-deprecated"><h4 class="tsd-anchor-link" id="deprecated-7">Deprecated<a href="#deprecated-7" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><p>Not supported in v2. For v1, use <code>project.cdkDeps.addV1DevDependencies()</code></p>
192
+ </div></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.addCdkTestDependencies</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="addcompilecommand"><span class="deprecated">add<wbr/>Compile<wbr/>Command</span><a href="#addcompilecommand" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="addcompilecommand-1"><span class="tsd-kind-call-signature">addCompileCommand</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">commands</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#addcompilecommand-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>DEPRECATED</p>
193
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">commands</span>: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></span></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><div class="tsd-comment tsd-typography"><div class="tsd-tag-deprecated"><h4 class="tsd-anchor-link" id="deprecated-8">Deprecated<a href="#deprecated-8" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><p>use <code>project.compileTask.exec()</code></p>
194
+ </div></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.addCompileCommand</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="adddeps"><span>add<wbr/>Deps</span><a href="#adddeps" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="adddeps-1"><span class="tsd-kind-call-signature">addDeps</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">deps</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#adddeps-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Defines normal dependencies.</p>
195
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">deps</span>: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></span><div class="tsd-comment tsd-typography"><p>Names modules to install. By default, the the dependency will
196
+ be installed in the next <code>npx projen</code> run and the version will be recorded
197
+ in your <code>package.json</code> file. You can upgrade manually or using <code>yarn add/upgrade</code>. If you wish to specify a version range use this syntax:
198
+ <code>module@^7</code>.</p>
199
+ </div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.addDeps</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="adddevdeps"><span>add<wbr/>Dev<wbr/>Deps</span><a href="#adddevdeps" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="adddevdeps-1"><span class="tsd-kind-call-signature">addDevDeps</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">deps</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#adddevdeps-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Defines development/test dependencies.</p>
200
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">deps</span>: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></span><div class="tsd-comment tsd-typography"><p>Names modules to install. By default, the the dependency will
201
+ be installed in the next <code>npx projen</code> run and the version will be recorded
202
+ in your <code>package.json</code> file. You can upgrade manually or using <code>yarn add/upgrade</code>. If you wish to specify a version range use this syntax:
203
+ <code>module@^7</code>.</p>
204
+ </div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.addDevDeps</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="addexcludefromcleanup"><span>add<wbr/>Exclude<wbr/>From<wbr/>Cleanup</span><a href="#addexcludefromcleanup" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="addexcludefromcleanup-1"><span class="tsd-kind-call-signature">addExcludeFromCleanup</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">globs</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#addexcludefromcleanup-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Exclude the matching files from pre-synth cleanup. Can be used when, for example, some
205
+ source files include the projen marker and we don't want them to be erased during synth.</p>
206
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">globs</span>: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></span><div class="tsd-comment tsd-typography"><p>The glob patterns to match</p>
207
+ </div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.addExcludeFromCleanup</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="addfields"><span>add<wbr/>Fields</span><a href="#addfields" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="addfields-1"><span class="tsd-kind-call-signature">addFields</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">fields</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">{</span> <span class="tsd-signature-symbol">[</span><span class="tsd-kind-index-signature">name</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">]:</span> <span class="tsd-signature-type">any</span> <span class="tsd-signature-symbol">}</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#addfields-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Directly set fields in <code>package.json</code>.</p>
208
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">fields</span>: <span class="tsd-signature-symbol">{</span> <span class="tsd-signature-symbol">[</span><span class="tsd-kind-index-signature">name</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">]:</span> <span class="tsd-signature-type">any</span> <span class="tsd-signature-symbol">}</span></span><div class="tsd-comment tsd-typography"><p>The fields to set</p>
209
+ </div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.addFields</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="addgitignore"><span>add<wbr/>Git<wbr/>Ignore</span><a href="#addgitignore" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="addgitignore-1"><span class="tsd-kind-call-signature">addGitIgnore</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">pattern</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#addgitignore-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Adds a .gitignore pattern.</p>
210
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">pattern</span>: <span class="tsd-signature-type">string</span></span><div class="tsd-comment tsd-typography"><p>The glob pattern to ignore.</p>
211
+ </div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.addGitIgnore</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="addkeywords"><span>add<wbr/>Keywords</span><a href="#addkeywords" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="addkeywords-1"><span class="tsd-kind-call-signature">addKeywords</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">keywords</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#addkeywords-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Adds keywords to package.json (deduplicated)</p>
212
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">keywords</span>: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></span><div class="tsd-comment tsd-typography"><p>The keywords to add</p>
213
+ </div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.addKeywords</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="addpackageignore"><span>add<wbr/>Package<wbr/>Ignore</span><a href="#addpackageignore" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="addpackageignore-1"><span class="tsd-kind-call-signature">addPackageIgnore</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">pattern</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#addpackageignore-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Adds patterns to be ignored by npm.</p>
214
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">pattern</span>: <span class="tsd-signature-type">string</span></span><div class="tsd-comment tsd-typography"><p>The pattern to ignore.</p>
215
+ </div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><div class="tsd-comment tsd-typography"><div class="tsd-tag-remarks"><h4 class="tsd-anchor-link" id="remarks">Remarks<a href="#remarks" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><p>If you are having trouble getting an ignore to populate, try using your construct or component's preSynthesize method to properly delay calling this method.</p>
216
+ </div></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.addPackageIgnore</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="addpeerdeps"><span>add<wbr/>Peer<wbr/>Deps</span><a href="#addpeerdeps" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="addpeerdeps-1"><span class="tsd-kind-call-signature">addPeerDeps</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">deps</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#addpeerdeps-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Defines peer dependencies.</p>
217
+ <p>When adding peer dependencies, a devDependency will also be added on the
218
+ pinned version of the declared peer. This will ensure that you are testing
219
+ your code against the minimum version required from your consumers.</p>
220
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">deps</span>: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></span><div class="tsd-comment tsd-typography"><p>Names modules to install. By default, the the dependency will
221
+ be installed in the next <code>npx projen</code> run and the version will be recorded
222
+ in your <code>package.json</code> file. You can upgrade manually or using <code>yarn add/upgrade</code>. If you wish to specify a version range use this syntax:
223
+ <code>module@^7</code>.</p>
224
+ </div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.addPeerDeps</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="addscripts"><span>add<wbr/>Scripts</span><a href="#addscripts" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="addscripts-1"><span class="tsd-kind-call-signature">addScripts</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">scripts</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">{</span> <span class="tsd-signature-symbol">[</span><span class="tsd-kind-index-signature">name</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">]:</span> <span class="tsd-signature-type">string</span> <span class="tsd-signature-symbol">}</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#addscripts-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Replaces the contents of multiple npm package.json scripts.</p>
225
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">scripts</span>: <span class="tsd-signature-symbol">{</span> <span class="tsd-signature-symbol">[</span><span class="tsd-kind-index-signature">name</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">]:</span> <span class="tsd-signature-type">string</span> <span class="tsd-signature-symbol">}</span></span><div class="tsd-comment tsd-typography"><p>The scripts to set</p>
226
+ </div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.addScripts</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="addtask"><span>add<wbr/>Task</span><a href="#addtask" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="addtask-1"><span class="tsd-kind-call-signature">addTask</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">name</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">,</span> <span class="tsd-kind-parameter">props</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">TaskOptions</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Task</span><a href="#addtask-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Adds a new task to this project. This will fail if the project already has
227
+ a task with this name.</p>
228
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">name</span>: <span class="tsd-signature-type">string</span></span><div class="tsd-comment tsd-typography"><p>The task name to add</p>
229
+ </div></li><li><span><code class="tsd-tag">Optional</code><span class="tsd-kind-parameter">props</span>: <span class="tsd-signature-type">TaskOptions</span></span><div class="tsd-comment tsd-typography"><p>Task properties</p>
230
+ </div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Task</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.addTask</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="addtestcommand"><span class="deprecated">add<wbr/>Test<wbr/>Command</span><a href="#addtestcommand" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="addtestcommand-1"><span class="tsd-kind-call-signature">addTestCommand</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">commands</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#addtestcommand-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>DEPRECATED</p>
231
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">commands</span>: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></span></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><div class="tsd-comment tsd-typography"><div class="tsd-tag-deprecated"><h4 class="tsd-anchor-link" id="deprecated-9">Deprecated<a href="#deprecated-9" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><p>use <code>project.testTask.exec()</code></p>
232
+ </div></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.addTestCommand</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="addtip"><span class="deprecated">add<wbr/>Tip</span><a href="#addtip" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="addtip-1"><span class="tsd-kind-call-signature">addTip</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">message</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#addtip-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Prints a &quot;tip&quot; message during synthesis.</p>
233
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">message</span>: <span class="tsd-signature-type">string</span></span><div class="tsd-comment tsd-typography"><p>The message</p>
234
+ </div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><div class="tsd-comment tsd-typography"><div class="tsd-tag-deprecated"><h4 class="tsd-anchor-link" id="deprecated-10">Deprecated<a href="#deprecated-10" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><ul>
235
+ <li>use <code>project.logger.info(message)</code> to show messages during synthesis</li>
236
+ </ul>
237
+ </div></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.addTip</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="annotategenerated"><span>annotate<wbr/>Generated</span><a href="#annotategenerated" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="annotategenerated-1"><span class="tsd-kind-call-signature">annotateGenerated</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">glob</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#annotategenerated-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Marks the provided file(s) as being generated. This is achieved using the
238
+ github-linguist attributes. Generated files do not count against the
239
+ repository statistics and language breakdown.</p>
240
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">glob</span>: <span class="tsd-signature-type">string</span></span><div class="tsd-comment tsd-typography"><p>the glob pattern to match (could be a file path).</p>
241
+ </div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><div class="tsd-comment tsd-typography"><div class="tsd-tag-see"><h4 class="tsd-anchor-link" id="see">See<a href="#see" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><p><a href="https://github.com/github/linguist/blob/master/docs/overrides.md">https://github.com/github/linguist/blob/master/docs/overrides.md</a></p>
242
+ </div></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.annotateGenerated</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="defaulttypescriptcompileroptions"><code class="tsd-tag">Protected</code><span>default<wbr/>Type<wbr/>Script<wbr/>Compiler<wbr/>Options</span><a href="#defaulttypescriptcompileroptions" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-protected tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="defaulttypescriptcompileroptions-1"><span class="tsd-kind-call-signature">defaultTypeScriptCompilerOptions</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">TypeScriptCompilerOptions</span><a href="#defaulttypescriptcompileroptions-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Projen default Typescript compiler options.</p>
243
+ </div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">TypeScriptCompilerOptions</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.defaultTypeScriptCompilerOptions</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="hasscript"><span class="deprecated">has<wbr/>Script</span><a href="#hasscript" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="hasscript-1"><span class="tsd-kind-call-signature">hasScript</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">name</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span><a href="#hasscript-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Indicates if a script by the name name is defined.</p>
244
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">name</span>: <span class="tsd-signature-type">string</span></span><div class="tsd-comment tsd-typography"><p>The name of the script</p>
245
+ </div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><div class="tsd-comment tsd-typography"><div class="tsd-tag-deprecated"><h4 class="tsd-anchor-link" id="deprecated-11">Deprecated<a href="#deprecated-11" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><p>Use <code>project.tasks.tryFind(name)</code></p>
246
+ </div></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.hasScript</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="postsynthesize"><span>post<wbr/>Synthesize</span><a href="#postsynthesize" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="postsynthesize-1"><span class="tsd-kind-call-signature">postSynthesize</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#postsynthesize-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Called after all components are synthesized. Order is <em>not</em> guaranteed.</p>
247
+ </div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.postSynthesize</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="presynthesize"><span>pre<wbr/>Synthesize</span><a href="#presynthesize" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="presynthesize-1"><span class="tsd-kind-call-signature">preSynthesize</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#presynthesize-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Called before all components are synthesized.</p>
248
+ </div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.preSynthesize</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="removescript"><span>remove<wbr/>Script</span><a href="#removescript" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="removescript-1"><span class="tsd-kind-call-signature">removeScript</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">name</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#removescript-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Removes the npm script (always successful).</p>
249
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">name</span>: <span class="tsd-signature-type">string</span></span><div class="tsd-comment tsd-typography"><p>The name of the script.</p>
250
+ </div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.removeScript</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="removetask"><span>remove<wbr/>Task</span><a href="#removetask" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="removetask-1"><span class="tsd-kind-call-signature">removeTask</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">name</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Task</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span><a href="#removetask-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Removes a task from a project.</p>
251
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">name</span>: <span class="tsd-signature-type">string</span></span><div class="tsd-comment tsd-typography"><p>The name of the task to remove.</p>
252
+ </div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Task</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></h4><p>The <code>Task</code> that was removed, otherwise <code>undefined</code>.</p>
253
+ <aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.removeTask</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="renderworkflowsetup"><span>render<wbr/>Workflow<wbr/>Setup</span><a href="#renderworkflowsetup" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="renderworkflowsetup-1"><span class="tsd-kind-call-signature">renderWorkflowSetup</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">options</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">RenderWorkflowSetupOptions</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">JobStep</span><span class="tsd-signature-symbol">[]</span><a href="#renderworkflowsetup-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Returns the set of workflow steps which should be executed to bootstrap a
254
+ workflow.</p>
255
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><code class="tsd-tag">Optional</code><span class="tsd-kind-parameter">options</span>: <span class="tsd-signature-type">RenderWorkflowSetupOptions</span></span><div class="tsd-comment tsd-typography"><p>Options.</p>
256
+ </div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">JobStep</span><span class="tsd-signature-symbol">[]</span></h4><p>Job steps</p>
257
+ <aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.renderWorkflowSetup</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="runtaskcommand"><span>run<wbr/>Task<wbr/>Command</span><a href="#runtaskcommand" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="runtaskcommand-1"><span class="tsd-kind-call-signature">runTaskCommand</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">task</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Task</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><a href="#runtaskcommand-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Returns the shell command to execute in order to run a task. This will
258
+ typically be <code>npx projen TASK</code>.</p>
259
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">task</span>: <span class="tsd-signature-type">Task</span></span><div class="tsd-comment tsd-typography"><p>The task for which the command is required</p>
260
+ </div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.runTaskCommand</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="setscript"><span>set<wbr/>Script</span><a href="#setscript" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="setscript-1"><span class="tsd-kind-call-signature">setScript</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">name</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">,</span> <span class="tsd-kind-parameter">command</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#setscript-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Replaces the contents of an npm package.json script.</p>
261
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">name</span>: <span class="tsd-signature-type">string</span></span><div class="tsd-comment tsd-typography"><p>The script name</p>
262
+ </div></li><li><span><span class="tsd-kind-parameter">command</span>: <span class="tsd-signature-type">string</span></span><div class="tsd-comment tsd-typography"><p>The command to execute</p>
263
+ </div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.setScript</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="synth"><span>synth</span><a href="#synth" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="synth-1"><span class="tsd-kind-call-signature">synth</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">void</span><a href="#synth-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Synthesize all project files into <code>outdir</code>.</p>
264
+ <ol>
265
+ <li>Call &quot;this.preSynthesize()&quot;</li>
266
+ <li>Delete all generated files</li>
267
+ <li>Synthesize all subprojects</li>
268
+ <li>Synthesize all components of this project</li>
269
+ <li>Call &quot;postSynthesize()&quot; for all components of this project</li>
270
+ <li>Call &quot;this.postSynthesize()&quot;</li>
271
+ </ol>
272
+ </div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.synth</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="tostring"><span>to<wbr/>String</span><a href="#tostring" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="tostring-1"><span class="tsd-kind-call-signature">toString</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><a href="#tostring-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Returns a string representation of this construct.</p>
273
+ </div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.toString</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="tryfindfile"><span>try<wbr/>Find<wbr/>File</span><a href="#tryfindfile" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="tryfindfile-1"><span class="tsd-kind-call-signature">tryFindFile</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">filePath</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">FileBase</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span><a href="#tryfindfile-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Finds a file at the specified relative path within this project and all
274
+ its subprojects.</p>
275
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">filePath</span>: <span class="tsd-signature-type">string</span></span><div class="tsd-comment tsd-typography"><p>The file path. If this path is relative, it will be resolved
276
+ from the root of <em>this</em> project.</p>
277
+ </div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">FileBase</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></h4><p>a <code>FileBase</code> or undefined if there is no file in that path</p>
278
+ <aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.tryFindFile</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="tryfindjsonfile"><span class="deprecated">try<wbr/>Find<wbr/>Json<wbr/>File</span><a href="#tryfindjsonfile" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="tryfindjsonfile-1"><span class="tsd-kind-call-signature">tryFindJsonFile</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">filePath</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">JsonFile</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span><a href="#tryfindjsonfile-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Finds a json file by name.</p>
279
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">filePath</span>: <span class="tsd-signature-type">string</span></span><div class="tsd-comment tsd-typography"><p>The file path.</p>
280
+ </div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">JsonFile</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></h4><div class="tsd-comment tsd-typography"><div class="tsd-tag-deprecated"><h4 class="tsd-anchor-link" id="deprecated-12">Deprecated<a href="#deprecated-12" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><p>use <code>tryFindObjectFile</code></p>
281
+ </div></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.tryFindJsonFile</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="tryfindobjectfile"><span>try<wbr/>Find<wbr/>Object<wbr/>File</span><a href="#tryfindobjectfile" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="tryfindobjectfile-1"><span class="tsd-kind-call-signature">tryFindObjectFile</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">filePath</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">ObjectFile</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span><a href="#tryfindobjectfile-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Finds an object file (like JsonFile, YamlFile, etc.) by name.</p>
282
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">filePath</span>: <span class="tsd-signature-type">string</span></span><div class="tsd-comment tsd-typography"><p>The file path.</p>
283
+ </div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">ObjectFile</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.tryFindObjectFile</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="tryremovefile"><span>try<wbr/>Remove<wbr/>File</span><a href="#tryremovefile" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="tryremovefile-1"><span class="tsd-kind-call-signature">tryRemoveFile</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">filePath</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">FileBase</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span><a href="#tryremovefile-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Finds a file at the specified relative path within this project and removes
284
+ it.</p>
285
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">filePath</span>: <span class="tsd-signature-type">string</span></span><div class="tsd-comment tsd-typography"><p>The file path. If this path is relative, it will be
286
+ resolved from the root of <em>this</em> project.</p>
287
+ </div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">FileBase</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></h4><p>a <code>FileBase</code> if the file was found and removed, or undefined if
288
+ the file was not found.</p>
289
+ <aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.tryRemoveFile</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="isconstruct"><code class="tsd-tag">Static</code><span>is<wbr/>Construct</span><a href="#isconstruct" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="isconstruct-1"><span class="tsd-kind-call-signature">isConstruct</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">x</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-kind-parameter">x</span> <span class="tsd-signature-keyword">is</span> <span class="tsd-signature-type">Construct</span><a href="#isconstruct-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Checks if <code>x</code> is a construct.</p>
290
+ <p>Use this method instead of <code>instanceof</code> to properly detect <code>Construct</code>
291
+ instances, even when the construct library is symlinked.</p>
292
+ <p>Explanation: in JavaScript, multiple copies of the <code>constructs</code> library on
293
+ disk are seen as independent, completely different libraries. As a
294
+ consequence, the class <code>Construct</code> in each copy of the <code>constructs</code> library
295
+ is seen as a different class, and an instance of one class will not test as
296
+ <code>instanceof</code> the other class. <code>npm install</code> will not create installations
297
+ like this, but users may manually symlink construct libraries together or
298
+ use a monorepo tool: in those cases, multiple copies of the <code>constructs</code>
299
+ library can be accidentally installed, and <code>instanceof</code> will behave
300
+ unpredictably. It is safest to avoid using <code>instanceof</code>, and using
301
+ this type-testing method instead.</p>
302
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">x</span>: <span class="tsd-signature-type">any</span></span><div class="tsd-comment tsd-typography"><p>Any object</p>
303
+ </div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-kind-parameter">x</span> <span class="tsd-signature-keyword">is</span> <span class="tsd-signature-type">Construct</span></h4><p>true if <code>x</code> is an object created from a class which extends <code>Construct</code>.</p>
304
+ <aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.isConstruct</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="isproject"><code class="tsd-tag">Static</code><span>is<wbr/>Project</span><a href="#isproject" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="isproject-1"><span class="tsd-kind-call-signature">isProject</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">x</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-kind-parameter">x</span> <span class="tsd-signature-keyword">is</span> <span class="tsd-signature-type">Project</span><a href="#isproject-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Test whether the given construct is a project.</p>
305
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">x</span>: <span class="tsd-signature-type">any</span></span></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-kind-parameter">x</span> <span class="tsd-signature-keyword">is</span> <span class="tsd-signature-type">Project</span></h4><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.isProject</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><h3 class="tsd-anchor-link" id="of"><code class="tsd-tag">Static</code><span>of</span><a href="#of" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited tsd-is-external"><li class="tsd-is-inherited tsd-is-external"><div class="tsd-signature tsd-anchor-link" id="of-1"><span class="tsd-kind-call-signature">of</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">construct</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">IConstruct</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Project</span><a href="#of-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Find the closest ancestor project for given construct.
306
+ When given a project, this it the project itself.</p>
307
+ </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">construct</span>: <span class="tsd-signature-type">IConstruct</span></span></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Project</span></h4><div class="tsd-comment tsd-typography"><div class="tsd-tag-throws"><h4 class="tsd-anchor-link" id="throws">Throws<a href="#throws" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><p>when no project is found in the path to the root</p>
308
+ </div></div><aside class="tsd-sources"><p>Inherited from awscdk.AwsCdkConstructLibrary.of</p></aside></div></li></ul></section></section></details></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>On This Page</h3></summary><div class="tsd-accordion-details"><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="section-Constructors"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Constructors</summary><div><a href="#constructor"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Constructor"><use href="../assets/icons.svg#icon-512"></use></svg><span>constructor</span></a></div></details><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="section-Properties"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Properties</summary><div><a href="#artifactsdirectory" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>artifacts<wbr/>Directory</span></a><a href="#artifactsjavascriptdirectory" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>artifacts<wbr/>Javascript<wbr/>Directory</span></a><a href="#autoapprove" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>auto<wbr/>Approve</span></a><a href="#automerge" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>auto<wbr/>Merge</span></a><a href="#biome" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>biome</span></a><a href="#buildworkflow" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>build<wbr/>Workflow</span></a><a href="#bundler" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>bundler</span></a><a href="#cdkdeps" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>cdk<wbr/>Deps</span></a><a href="#commitgenerated" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>commit<wbr/>Generated</span></a><a href="#defaulttask" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>default<wbr/>Task</span></a><a href="#deps" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>deps</span></a><a href="#devcontainer" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>dev<wbr/>Container</span></a><a href="#docgen" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>docgen</span></a><a href="#docsdirectory" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>docs<wbr/>Directory</span></a><a href="#eslint" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>eslint</span></a><a href="#gitattributes" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>gitattributes</span></a><a href="#github" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>github</span></a><a href="#gitignore" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>gitignore</span></a><a href="#gitpod" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>gitpod</span></a><a href="#initproject" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>init<wbr/>Project</span></a><a href="#jest" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>jest</span></a><a href="#libdir" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>libdir</span></a><a href="#logger" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>logger</span></a><a href="#name" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>name</span></a><a href="#node" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>node</span></a><a href="#nodeversion" class="tsd-is-protected tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>node<wbr/>Version</span></a><a href="#npmignore" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>npmignore</span></a><a href="#outdir" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>outdir</span></a><a href="#package" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>package</span></a><a href="#parent" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>parent</span></a><a href="#prettier" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>prettier</span></a><a href="#projectbuild" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>project<wbr/>Build</span></a><a href="#projecttype" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>project<wbr/>Type</span></a><a href="#publisher" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>publisher</span></a><a href="#release" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>release</span></a><a href="#runscriptcommand" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>run<wbr/>Script<wbr/>Command</span></a><a href="#srcdir" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>srcdir</span></a><a href="#tasks" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>tasks</span></a><a href="#testdir" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>testdir</span></a><a href="#tsconfig" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>tsconfig</span></a><a href="#tsconfigdev" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>tsconfig<wbr/>Dev</span></a><a href="#tsconfigeslint" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>tsconfig<wbr/>Eslint</span></a><a href="#upgradeworkflow" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>upgrade<wbr/>Workflow</span></a><a href="#vscode" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>vscode</span></a><a href="#watchtask" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>watch<wbr/>Task</span></a><a href="#workflowbootstrapsteps" class="tsd-is-protected tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>workflow<wbr/>Bootstrap<wbr/>Steps</span></a><a href="#workflowpackagecache" class="tsd-is-protected tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>workflow<wbr/>Package<wbr/>Cache</span></a><a href="#default_task" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>DEFAULT_<wbr/>TASK</span></a><a href="#default_ts_jest_tranform_pattern" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>DEFAULT_<wbr/>TS_<wbr/>JEST_<wbr/>TRANFORM_<wbr/>PATTERN</span></a></div></details><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="section-Accessors"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Accessors</summary><div><a href="#allowlibrarydependencies" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>allow<wbr/>Library<wbr/>Dependencies</span></a><a href="#buildtask" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>build<wbr/>Task</span></a><a href="#buildworkflowjobid" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>build<wbr/>Workflow<wbr/>Job<wbr/>Id</span></a><a href="#cdkversion" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>cdk<wbr/>Version</span></a><a href="#compiletask" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>compile<wbr/>Task</span></a><a href="#components" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>components</span></a><a href="#ejected" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>ejected</span></a><a href="#entrypoint" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>entrypoint</span></a><a href="#files" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>files</span></a><a href="#manifest" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>manifest</span></a><a href="#maxnodeversion" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>max<wbr/>Node<wbr/>Version</span></a><a href="#minnodeversion" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>min<wbr/>Node<wbr/>Version</span></a><a href="#npmrc" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>npmrc</span></a><a href="#packagemanager" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>package<wbr/>Manager</span></a><a href="#packagetask" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>package<wbr/>Task</span></a><a href="#postcompiletask" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>post<wbr/>Compile<wbr/>Task</span></a><a href="#precompiletask" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>pre<wbr/>Compile<wbr/>Task</span></a><a href="#projencommand" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>projen<wbr/>Command</span></a><a href="#root" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>root</span></a><a href="#subprojects" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>subprojects</span></a><a href="#testtask" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>test<wbr/>Task</span></a><a href="#version" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>version</span></a></div></details><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="section-Methods"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Methods</summary><div><a href="#addbins" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Bins</span></a><a href="#addbundleddeps" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Bundled<wbr/>Deps</span></a><a href="#addcdkdependencies" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Cdk<wbr/>Dependencies</span></a><a href="#addcdktestdependencies" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Cdk<wbr/>Test<wbr/>Dependencies</span></a><a href="#addcompilecommand" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Compile<wbr/>Command</span></a><a href="#adddeps" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Deps</span></a><a href="#adddevdeps" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Dev<wbr/>Deps</span></a><a href="#addexcludefromcleanup" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Exclude<wbr/>From<wbr/>Cleanup</span></a><a href="#addfields" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Fields</span></a><a href="#addgitignore" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Git<wbr/>Ignore</span></a><a href="#addkeywords" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Keywords</span></a><a href="#addpackageignore" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Package<wbr/>Ignore</span></a><a href="#addpeerdeps" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Peer<wbr/>Deps</span></a><a href="#addscripts" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Scripts</span></a><a href="#addtask" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Task</span></a><a href="#addtestcommand" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Test<wbr/>Command</span></a><a href="#addtip" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Tip</span></a><a href="#annotategenerated" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>annotate<wbr/>Generated</span></a><a href="#defaulttypescriptcompileroptions" class="tsd-is-protected tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>default<wbr/>Type<wbr/>Script<wbr/>Compiler<wbr/>Options</span></a><a href="#hasscript" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>has<wbr/>Script</span></a><a href="#postsynthesize" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>post<wbr/>Synthesize</span></a><a href="#presynthesize" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>pre<wbr/>Synthesize</span></a><a href="#removescript" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>remove<wbr/>Script</span></a><a href="#removetask" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>remove<wbr/>Task</span></a><a href="#renderworkflowsetup" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>render<wbr/>Workflow<wbr/>Setup</span></a><a href="#runtaskcommand" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>run<wbr/>Task<wbr/>Command</span></a><a href="#setscript" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>set<wbr/>Script</span></a><a href="#synth" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>synth</span></a><a href="#tostring" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>to<wbr/>String</span></a><a href="#tryfindfile" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>try<wbr/>Find<wbr/>File</span></a><a href="#tryfindjsonfile" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>try<wbr/>Find<wbr/>Json<wbr/>File</span></a><a href="#tryfindobjectfile" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>try<wbr/>Find<wbr/>Object<wbr/>File</span></a><a href="#tryremovefile" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>try<wbr/>Remove<wbr/>File</span></a><a href="#isconstruct" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>is<wbr/>Construct</span></a><a href="#isproject" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>is<wbr/>Project</span></a><a href="#of" class="tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>of</span></a></div></details></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html">@nikovirtala/projen-constructs</a><ul class="tsd-small-nested-navigation" id="tsd-nav-container"><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>