@nikovirtala/projen-constructs 0.0.10 → 0.0.12

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.
package/.jsii CHANGED
@@ -4198,7 +4198,7 @@
4198
4198
  },
4199
4199
  "name": "@nikovirtala/projen-constructs",
4200
4200
  "readme": {
4201
- "markdown": "# @nikovirtala/projen-constructs\n\nProjen project types with standard configuration for consistent project setup across all repositories.\n\n## Installation\n\n```bash\npnpm add -D @nikovirtala/projen-constructs projen constructs\n```\n\n## Standard Configuration\n\nAll project types include:\n\n- **Author**: Niko Virtala (niko.virtala@hey.com)\n- **Default Release Branch**: main\n- **Package Manager**: pnpm 10\n- **Node Version**: 22.21.1\n- **TypeScript**: 5.9.3\n- **Module Type**: ES modules\n- **Code Quality**: Biome for formatting and linting\n- **Testing**: Vitest\n- **Auto-merge**: Enabled with auto-approve\n- **VSCode**: Recommended extensions and settings\n- **mise**: Node version management\n- **CDK Version**: 2.223.0 (for CDK projects)\n- **JSII Version**: ~5.9.3 (for JSII projects)\n\n## Customization\n\nOverride any option by passing it to the constructor:\n\n```typescript\nconst project = new JsiiProject({\n name: \"my-project\",\n repositoryUrl: \"https://github.com/nikovirtala/my-project.git\",\n minNodeVersion: \"20.0.0\",\n author: \"Custom Author\",\n authorAddress: \"custom@example.com\",\n tsconfig: {\n compilerOptions: {\n noUnusedLocals: false, // Override individual compiler options\n },\n },\n biomeOptions: {\n biomeConfig: {\n formatter: {\n lineWidth: 100, // Override individual formatter options\n },\n },\n },\n});\n```\n\n## Usage\n\n### AWS CDK Construct Library Projects\n\n```typescript\nimport { AwsCdkConstructLibraryProject } from \"@nikovirtala/projen-constructs\";\n\nconst project = new AwsCdkConstructLibraryProject({\n name: \"my-cdk-construct\",\n repositoryUrl: \"https://github.com/nikovirtala/my-cdk-construct.git\",\n});\n\nproject.synth();\n```\n\n### AWS CDK TypeScript App Projects\n\n```typescript\nimport { AwsCdkTypeScriptAppProject } from \"@nikovirtala/projen-constructs\";\n\nconst project = new AwsCdkTypeScriptAppProject({\n name: \"my-cdk-app\",\n repositoryUrl: \"https://github.com/nikovirtala/my-cdk-app.git\",\n});\n\nproject.synth();\n```\n\n### JSII Projects\n\n```typescript\nimport { JsiiProject } from \"@nikovirtala/projen-constructs\";\n\nconst project = new JsiiProject({\n name: \"my-jsii-project\",\n repositoryUrl: \"https://github.com/nikovirtala/my-jsii-project.git\",\n});\n\nproject.synth();\n```\n\n### TypeScript Projects\n\n```typescript\nimport { TypeScriptProject } from \"@nikovirtala/projen-constructs\";\n\nconst project = new TypeScriptProject({\n name: \"my-typescript-project\",\n repositoryUrl: \"https://github.com/nikovirtala/my-typescript-project.git\",\n});\n\nproject.synth();\n```\n\n## Components\n\nThe package includes reusable components for common development tasks:\n\n### Vitest\n\n[Vitest](https://vitest.dev) testing framework component.\n\n```typescript\nimport { Vitest } from \"@nikovirtala/projen-constructs\";\n\nnew Vitest(project, {\n vitestVersion: \"^4\",\n config: {\n coverageProvider: CoverageProvider.V8,\n coverageReporters: [CoverageReporter.TEXT, CoverageReporter.LCOV],\n },\n});\n```\n\n### TypeDoc\n\nTypeDoc documentation generation component.\n\n```typescript\nimport { TypeDoc, EntryPointStrategy } from \"@nikovirtala/projen-constructs\";\n\nnew TypeDoc(project, {\n version: \"^0.28\",\n typeDocConfig: {\n entryPointStrategy: EntryPointStrategy.EXPAND,\n out: \"docs/api\",\n exclude: [\"**/*.test.ts\"],\n },\n});\n```\n\n### Homebrew\n\nHomebrew package management component.\n\n```typescript\nimport { Homebrew } from \"@nikovirtala/projen-constructs\";\n\nconst homebrew = new Homebrew(project, {\n packages: [\"jq\", \"yq\"],\n});\n\nhomebrew.addPackage(\"gh\");\n```\n\n### Colima\n\nColima Docker runtime component.\n\n```typescript\nimport { Colima } from \"@nikovirtala/projen-constructs\";\n\nnew Colima(project);\n```\n\n### LocalStack\n\nLocalStack AWS emulation component.\n\n```typescript\nimport { LocalStack } from \"@nikovirtala/projen-constructs\";\n\nnew LocalStack(project, {\n services: [\"s3\", \"lambda\", \"dynamodb\"],\n port: 4566,\n debug: true,\n});\n```\n\n### LambdaFunctionConstructGenerator\n\nGenerates AWS CDK Lambda Function constructs and bundles their code.\n\n```typescript\nimport { LambdaFunctionConstructGenerator } from \"@nikovirtala/projen-constructs\";\n\nnew LambdaFunctionConstructGenerator(project, {\n sourceDir: \"src/handlers\",\n outputDir: \"src/constructs/lambda\",\n filePattern: \"*.lambda.ts\",\n esbuildOptions: {\n minify: true,\n sourcemap: true,\n },\n});\n```\n\n### Bundler\n\nLow-level bundling utilities for Lambda functions.\n\n```typescript\nimport {\n Bundler,\n LambdaFunctionCodeBundle,\n} from \"@nikovirtala/projen-constructs\";\n\nconst bundler = new Bundler(project, {\n assetsDir: \"assets\",\n esbuildVersion: \"^0.25\",\n});\n\nnew LambdaFunctionCodeBundle(project, {\n entrypoint: \"src/my-function.lambda.ts\",\n extension: \".lambda.ts\",\n});\n```\n"
4201
+ "markdown": "# @nikovirtala/projen-constructs\n\nProjen project types with standard configuration for consistent project setup across all repositories.\n\n## Installation\n\n```bash\npnpm add -D @nikovirtala/projen-constructs projen constructs\n```\n\n## Standard Configuration\n\nAll project types include:\n\n- **Author**: Niko Virtala (niko.virtala@hey.com)\n- **Default Release Branch**: main\n- **Package Manager**: pnpm 10\n- **Node Version**: 22.21.1\n- **TypeScript**: 5.9.3\n- **Module Type**: ES modules (TypeScript and CDK App projects only; JSII projects use CommonJS)\n- **Code Quality**: Biome for formatting and linting\n- **Testing**: Vitest\n- **Auto-merge**: Enabled with auto-approve\n- **VSCode**: Recommended extensions and settings\n- **mise**: Node version management (via Homebrew)\n- **CDK Version**: 2.223.0 (for CDK projects)\n- **JSII Version**: ~5.9.3 (for JSII projects)\n\n## Customization\n\nOverride any option by passing it to the constructor:\n\n```typescript\nconst project = new JsiiProject({\n name: \"my-project\",\n repositoryUrl: \"https://github.com/nikovirtala/my-project.git\",\n minNodeVersion: \"20.0.0\",\n author: \"Custom Author\",\n authorAddress: \"custom@example.com\",\n mise: false,\n vitest: false,\n tsconfig: {\n compilerOptions: {\n noUnusedLocals: false, // Override individual compiler options\n },\n },\n biomeOptions: {\n biomeConfig: {\n formatter: {\n lineWidth: 100, // Override individual formatter options\n },\n },\n },\n});\n```\n\n## Usage\n\n### AWS CDK Construct Library Projects\n\n```typescript\nimport { AwsCdkConstructLibraryProject } from \"@nikovirtala/projen-constructs\";\n\nconst project = new AwsCdkConstructLibraryProject({\n name: \"my-cdk-construct\",\n repositoryUrl: \"https://github.com/nikovirtala/my-cdk-construct.git\",\n});\n\nproject.synth();\n```\n\n### AWS CDK TypeScript App Projects\n\n```typescript\nimport { AwsCdkTypeScriptAppProject } from \"@nikovirtala/projen-constructs\";\n\nconst project = new AwsCdkTypeScriptAppProject({\n name: \"my-cdk-app\",\n repositoryUrl: \"https://github.com/nikovirtala/my-cdk-app.git\",\n});\n\nproject.synth();\n```\n\n### JSII Projects\n\n```typescript\nimport { JsiiProject } from \"@nikovirtala/projen-constructs\";\n\nconst project = new JsiiProject({\n name: \"my-jsii-project\",\n repositoryUrl: \"https://github.com/nikovirtala/my-jsii-project.git\",\n});\n\nproject.synth();\n```\n\n### TypeScript Projects\n\n```typescript\nimport { TypeScriptProject } from \"@nikovirtala/projen-constructs\";\n\nconst project = new TypeScriptProject({\n name: \"my-typescript-project\",\n repositoryUrl: \"https://github.com/nikovirtala/my-typescript-project.git\",\n});\n\nproject.synth();\n```\n\n## Components\n\nThe package includes reusable components for common development tasks:\n\n### Vitest\n\n[Vitest](https://vitest.dev) testing framework component.\n\n```typescript\nimport { Vitest } from \"@nikovirtala/projen-constructs\";\n\nnew Vitest(project, {\n vitestVersion: \"^4\",\n config: {\n coverageProvider: CoverageProvider.V8,\n coverageReporters: [CoverageReporter.TEXT, CoverageReporter.LCOV],\n },\n});\n```\n\n### TypeDoc\n\nTypeDoc documentation generation component.\n\n```typescript\nimport { TypeDoc, EntryPointStrategy } from \"@nikovirtala/projen-constructs\";\n\nnew TypeDoc(project, {\n version: \"^0.28\",\n typeDocConfig: {\n entryPointStrategy: EntryPointStrategy.EXPAND,\n out: \"docs/api\",\n exclude: [\"**/*.test.ts\"],\n },\n});\n```\n\n### Mise\n\nMise version management component.\n\n```typescript\nimport { Mise } from \"@nikovirtala/projen-constructs\";\n\nnew Mise(project, {\n nodeVersion: \"22.21.1\",\n});\n```\n\n### Homebrew\n\nHomebrew package management component.\n\n```typescript\nimport { Homebrew } from \"@nikovirtala/projen-constructs\";\n\nconst homebrew = new Homebrew(project, {\n packages: [\"jq\", \"yq\"],\n});\n\nhomebrew.addPackage(\"gh\");\n```\n\n### Colima\n\nColima Docker runtime component.\n\n```typescript\nimport { Colima } from \"@nikovirtala/projen-constructs\";\n\nnew Colima(project);\n```\n\n### LocalStack\n\nLocalStack AWS emulation component.\n\n```typescript\nimport { LocalStack } from \"@nikovirtala/projen-constructs\";\n\nnew LocalStack(project, {\n services: [\"s3\", \"lambda\", \"dynamodb\"],\n port: 4566,\n debug: true,\n});\n```\n\n### LambdaFunctionConstructGenerator\n\nGenerates AWS CDK Lambda Function constructs and bundles their code.\n\n```typescript\nimport { LambdaFunctionConstructGenerator } from \"@nikovirtala/projen-constructs\";\n\nnew LambdaFunctionConstructGenerator(project, {\n sourceDir: \"src/handlers\",\n outputDir: \"src/constructs/lambda\",\n filePattern: \"*.lambda.ts\",\n esbuildOptions: {\n minify: true,\n sourcemap: true,\n },\n});\n```\n\n### Bundler\n\nLow-level bundling utilities for Lambda functions.\n\n```typescript\nimport {\n Bundler,\n LambdaFunctionCodeBundle,\n} from \"@nikovirtala/projen-constructs\";\n\nconst bundler = new Bundler(project, {\n assetsDir: \"assets\",\n esbuildVersion: \"^0.25\",\n});\n\nnew LambdaFunctionCodeBundle(project, {\n entrypoint: \"src/my-function.lambda.ts\",\n extension: \".lambda.ts\",\n});\n```\n"
4202
4202
  },
4203
4203
  "repository": {
4204
4204
  "type": "git",
@@ -4319,7 +4319,7 @@
4319
4319
  "immutable": true,
4320
4320
  "locationInModule": {
4321
4321
  "filename": "src/projects/awscdk-construct-options.generated.ts",
4322
- "line": 490
4322
+ "line": 496
4323
4323
  },
4324
4324
  "name": "defaultReleaseBranch",
4325
4325
  "type": {
@@ -4339,7 +4339,7 @@
4339
4339
  "immutable": true,
4340
4340
  "locationInModule": {
4341
4341
  "filename": "src/projects/awscdk-construct-options.generated.ts",
4342
- "line": 1129
4342
+ "line": 1135
4343
4343
  },
4344
4344
  "name": "name",
4345
4345
  "type": {
@@ -4374,7 +4374,7 @@
4374
4374
  "immutable": true,
4375
4375
  "locationInModule": {
4376
4376
  "filename": "src/projects/awscdk-construct-options.generated.ts",
4377
- "line": 967
4377
+ "line": 973
4378
4378
  },
4379
4379
  "name": "allowLibraryDependencies",
4380
4380
  "optional": true,
@@ -4392,7 +4392,7 @@
4392
4392
  "immutable": true,
4393
4393
  "locationInModule": {
4394
4394
  "filename": "src/projects/awscdk-construct-options.generated.ts",
4395
- "line": 484
4395
+ "line": 490
4396
4396
  },
4397
4397
  "name": "artifactsDirectory",
4398
4398
  "optional": true,
@@ -4411,7 +4411,7 @@
4411
4411
  "immutable": true,
4412
4412
  "locationInModule": {
4413
4413
  "filename": "src/projects/awscdk-construct-options.generated.ts",
4414
- "line": 478
4414
+ "line": 484
4415
4415
  },
4416
4416
  "name": "auditDeps",
4417
4417
  "optional": true,
@@ -4429,7 +4429,7 @@
4429
4429
  "immutable": true,
4430
4430
  "locationInModule": {
4431
4431
  "filename": "src/projects/awscdk-construct-options.generated.ts",
4432
- "line": 469
4432
+ "line": 475
4433
4433
  },
4434
4434
  "name": "auditDepsOptions",
4435
4435
  "optional": true,
@@ -4446,7 +4446,7 @@
4446
4446
  "immutable": true,
4447
4447
  "locationInModule": {
4448
4448
  "filename": "src/projects/awscdk-construct-options.generated.ts",
4449
- "line": 959
4449
+ "line": 965
4450
4450
  },
4451
4451
  "name": "authorEmail",
4452
4452
  "optional": true,
@@ -4463,7 +4463,7 @@
4463
4463
  "immutable": true,
4464
4464
  "locationInModule": {
4465
4465
  "filename": "src/projects/awscdk-construct-options.generated.ts",
4466
- "line": 954
4466
+ "line": 960
4467
4467
  },
4468
4468
  "name": "authorName",
4469
4469
  "optional": true,
@@ -4480,7 +4480,7 @@
4480
4480
  "immutable": true,
4481
4481
  "locationInModule": {
4482
4482
  "filename": "src/projects/awscdk-construct-options.generated.ts",
4483
- "line": 949
4483
+ "line": 955
4484
4484
  },
4485
4485
  "name": "authorOrganization",
4486
4486
  "optional": true,
@@ -4497,7 +4497,7 @@
4497
4497
  "immutable": true,
4498
4498
  "locationInModule": {
4499
4499
  "filename": "src/projects/awscdk-construct-options.generated.ts",
4500
- "line": 944
4500
+ "line": 950
4501
4501
  },
4502
4502
  "name": "authorUrl",
4503
4503
  "optional": true,
@@ -4515,7 +4515,7 @@
4515
4515
  "immutable": true,
4516
4516
  "locationInModule": {
4517
4517
  "filename": "src/projects/awscdk-construct-options.generated.ts",
4518
- "line": 1053
4518
+ "line": 1059
4519
4519
  },
4520
4520
  "name": "autoApproveOptions",
4521
4521
  "optional": true,
@@ -4534,7 +4534,7 @@
4534
4534
  "immutable": true,
4535
4535
  "locationInModule": {
4536
4536
  "filename": "src/projects/awscdk-construct-options.generated.ts",
4537
- "line": 463
4537
+ "line": 469
4538
4538
  },
4539
4539
  "name": "autoApproveUpgrades",
4540
4540
  "optional": true,
@@ -4552,7 +4552,7 @@
4552
4552
  "immutable": true,
4553
4553
  "locationInModule": {
4554
4554
  "filename": "src/projects/awscdk-construct-options.generated.ts",
4555
- "line": 939
4555
+ "line": 945
4556
4556
  },
4557
4557
  "name": "autoDetectBin",
4558
4558
  "optional": true,
@@ -4571,7 +4571,7 @@
4571
4571
  "immutable": true,
4572
4572
  "locationInModule": {
4573
4573
  "filename": "src/projects/awscdk-construct-options.generated.ts",
4574
- "line": 1047
4574
+ "line": 1053
4575
4575
  },
4576
4576
  "name": "autoMerge",
4577
4577
  "optional": true,
@@ -4590,7 +4590,7 @@
4590
4590
  "immutable": true,
4591
4591
  "locationInModule": {
4592
4592
  "filename": "src/projects/awscdk-construct-options.generated.ts",
4593
- "line": 1039
4593
+ "line": 1045
4594
4594
  },
4595
4595
  "name": "autoMergeOptions",
4596
4596
  "optional": true,
@@ -4608,7 +4608,7 @@
4608
4608
  "immutable": true,
4609
4609
  "locationInModule": {
4610
4610
  "filename": "src/projects/awscdk-construct-options.generated.ts",
4611
- "line": 933
4611
+ "line": 939
4612
4612
  },
4613
4613
  "name": "bin",
4614
4614
  "optional": true,
@@ -4621,6 +4621,24 @@
4621
4621
  }
4622
4622
  }
4623
4623
  },
4624
+ {
4625
+ "abstract": true,
4626
+ "docs": {
4627
+ "default": "false",
4628
+ "stability": "experimental",
4629
+ "summary": "Setup Biome."
4630
+ },
4631
+ "immutable": true,
4632
+ "locationInModule": {
4633
+ "filename": "src/projects/awscdk-construct-options.generated.ts",
4634
+ "line": 462
4635
+ },
4636
+ "name": "biome",
4637
+ "optional": true,
4638
+ "type": {
4639
+ "primitive": "boolean"
4640
+ }
4641
+ },
4624
4642
  {
4625
4643
  "abstract": true,
4626
4644
  "docs": {
@@ -4648,7 +4666,7 @@
4648
4666
  "immutable": true,
4649
4667
  "locationInModule": {
4650
4668
  "filename": "src/projects/awscdk-construct-options.generated.ts",
4651
- "line": 925
4669
+ "line": 931
4652
4670
  },
4653
4671
  "name": "bugsEmail",
4654
4672
  "optional": true,
@@ -4665,7 +4683,7 @@
4665
4683
  "immutable": true,
4666
4684
  "locationInModule": {
4667
4685
  "filename": "src/projects/awscdk-construct-options.generated.ts",
4668
- "line": 920
4686
+ "line": 926
4669
4687
  },
4670
4688
  "name": "bugsUrl",
4671
4689
  "optional": true,
@@ -4719,7 +4737,7 @@
4719
4737
  "immutable": true,
4720
4738
  "locationInModule": {
4721
4739
  "filename": "src/projects/awscdk-construct-options.generated.ts",
4722
- "line": 683
4740
+ "line": 689
4723
4741
  },
4724
4742
  "name": "bumpPackage",
4725
4743
  "optional": true,
@@ -4737,7 +4755,7 @@
4737
4755
  "immutable": true,
4738
4756
  "locationInModule": {
4739
4757
  "filename": "src/projects/awscdk-construct-options.generated.ts",
4740
- "line": 915
4758
+ "line": 921
4741
4759
  },
4742
4760
  "name": "bundledDeps",
4743
4761
  "optional": true,
@@ -4777,7 +4795,7 @@
4777
4795
  "immutable": true,
4778
4796
  "locationInModule": {
4779
4797
  "filename": "src/projects/awscdk-construct-options.generated.ts",
4780
- "line": 900
4798
+ "line": 906
4781
4799
  },
4782
4800
  "name": "bunVersion",
4783
4801
  "optional": true,
@@ -4889,7 +4907,7 @@
4889
4907
  "immutable": true,
4890
4908
  "locationInModule": {
4891
4909
  "filename": "src/projects/awscdk-construct-options.generated.ts",
4892
- "line": 1031
4910
+ "line": 1037
4893
4911
  },
4894
4912
  "name": "clobber",
4895
4913
  "optional": true,
@@ -4908,7 +4926,7 @@
4908
4926
  "immutable": true,
4909
4927
  "locationInModule": {
4910
4928
  "filename": "src/projects/awscdk-construct-options.generated.ts",
4911
- "line": 894
4929
+ "line": 900
4912
4930
  },
4913
4931
  "name": "codeArtifactOptions",
4914
4932
  "optional": true,
@@ -4962,7 +4980,7 @@
4962
4980
  "immutable": true,
4963
4981
  "locationInModule": {
4964
4982
  "filename": "src/projects/awscdk-construct-options.generated.ts",
4965
- "line": 1122
4983
+ "line": 1128
4966
4984
  },
4967
4985
  "name": "commitGenerated",
4968
4986
  "optional": true,
@@ -5130,7 +5148,7 @@
5130
5148
  "immutable": true,
5131
5149
  "locationInModule": {
5132
5150
  "filename": "src/projects/awscdk-construct-options.generated.ts",
5133
- "line": 887
5151
+ "line": 893
5134
5152
  },
5135
5153
  "name": "deps",
5136
5154
  "optional": true,
@@ -5193,7 +5211,7 @@
5193
5211
  "immutable": true,
5194
5212
  "locationInModule": {
5195
5213
  "filename": "src/projects/awscdk-construct-options.generated.ts",
5196
- "line": 874
5214
+ "line": 880
5197
5215
  },
5198
5216
  "name": "description",
5199
5217
  "optional": true,
@@ -5211,7 +5229,7 @@
5211
5229
  "immutable": true,
5212
5230
  "locationInModule": {
5213
5231
  "filename": "src/projects/awscdk-construct-options.generated.ts",
5214
- "line": 1025
5232
+ "line": 1031
5215
5233
  },
5216
5234
  "name": "devContainer",
5217
5235
  "optional": true,
@@ -5233,7 +5251,7 @@
5233
5251
  "immutable": true,
5234
5252
  "locationInModule": {
5235
5253
  "filename": "src/projects/awscdk-construct-options.generated.ts",
5236
- "line": 866
5254
+ "line": 872
5237
5255
  },
5238
5256
  "name": "devDeps",
5239
5257
  "optional": true,
@@ -5364,7 +5382,7 @@
5364
5382
  "immutable": true,
5365
5383
  "locationInModule": {
5366
5384
  "filename": "src/projects/awscdk-construct-options.generated.ts",
5367
- "line": 849
5385
+ "line": 855
5368
5386
  },
5369
5387
  "name": "entrypoint",
5370
5388
  "optional": true,
@@ -5442,7 +5460,7 @@
5442
5460
  "immutable": true,
5443
5461
  "locationInModule": {
5444
5462
  "filename": "src/projects/awscdk-construct-options.generated.ts",
5445
- "line": 1019
5463
+ "line": 1025
5446
5464
  },
5447
5465
  "name": "github",
5448
5466
  "optional": true,
@@ -5460,7 +5478,7 @@
5460
5478
  "immutable": true,
5461
5479
  "locationInModule": {
5462
5480
  "filename": "src/projects/awscdk-construct-options.generated.ts",
5463
- "line": 1012
5481
+ "line": 1018
5464
5482
  },
5465
5483
  "name": "githubOptions",
5466
5484
  "optional": true,
@@ -5499,7 +5517,7 @@
5499
5517
  "immutable": true,
5500
5518
  "locationInModule": {
5501
5519
  "filename": "src/projects/awscdk-construct-options.generated.ts",
5502
- "line": 1116
5520
+ "line": 1122
5503
5521
  },
5504
5522
  "name": "gitIgnoreOptions",
5505
5523
  "optional": true,
@@ -5516,7 +5534,7 @@
5516
5534
  "immutable": true,
5517
5535
  "locationInModule": {
5518
5536
  "filename": "src/projects/awscdk-construct-options.generated.ts",
5519
- "line": 1111
5537
+ "line": 1117
5520
5538
  },
5521
5539
  "name": "gitOptions",
5522
5540
  "optional": true,
@@ -5534,7 +5552,7 @@
5534
5552
  "immutable": true,
5535
5553
  "locationInModule": {
5536
5554
  "filename": "src/projects/awscdk-construct-options.generated.ts",
5537
- "line": 1006
5555
+ "line": 1012
5538
5556
  },
5539
5557
  "name": "gitpod",
5540
5558
  "optional": true,
@@ -5551,7 +5569,7 @@
5551
5569
  "immutable": true,
5552
5570
  "locationInModule": {
5553
5571
  "filename": "src/projects/awscdk-construct-options.generated.ts",
5554
- "line": 842
5572
+ "line": 848
5555
5573
  },
5556
5574
  "name": "homepage",
5557
5575
  "optional": true,
@@ -5587,7 +5605,7 @@
5587
5605
  "immutable": true,
5588
5606
  "locationInModule": {
5589
5607
  "filename": "src/projects/awscdk-construct-options.generated.ts",
5590
- "line": 676
5608
+ "line": 682
5591
5609
  },
5592
5610
  "name": "jsiiReleaseVersion",
5593
5611
  "optional": true,
@@ -5626,7 +5644,7 @@
5626
5644
  "immutable": true,
5627
5645
  "locationInModule": {
5628
5646
  "filename": "src/projects/awscdk-construct-options.generated.ts",
5629
- "line": 837
5647
+ "line": 843
5630
5648
  },
5631
5649
  "name": "keywords",
5632
5650
  "optional": true,
@@ -5722,7 +5740,7 @@
5722
5740
  "immutable": true,
5723
5741
  "locationInModule": {
5724
5742
  "filename": "src/projects/awscdk-construct-options.generated.ts",
5725
- "line": 832
5743
+ "line": 838
5726
5744
  },
5727
5745
  "name": "license",
5728
5746
  "optional": true,
@@ -5740,7 +5758,7 @@
5740
5758
  "immutable": true,
5741
5759
  "locationInModule": {
5742
5760
  "filename": "src/projects/awscdk-construct-options.generated.ts",
5743
- "line": 824
5761
+ "line": 830
5744
5762
  },
5745
5763
  "name": "licensed",
5746
5764
  "optional": true,
@@ -5758,7 +5776,7 @@
5758
5776
  "immutable": true,
5759
5777
  "locationInModule": {
5760
5778
  "filename": "src/projects/awscdk-construct-options.generated.ts",
5761
- "line": 1106
5779
+ "line": 1112
5762
5780
  },
5763
5781
  "name": "logging",
5764
5782
  "optional": true,
@@ -5777,7 +5795,7 @@
5777
5795
  "immutable": true,
5778
5796
  "locationInModule": {
5779
5797
  "filename": "src/projects/awscdk-construct-options.generated.ts",
5780
- "line": 670
5798
+ "line": 676
5781
5799
  },
5782
5800
  "name": "majorVersion",
5783
5801
  "optional": true,
@@ -5796,7 +5814,7 @@
5796
5814
  "immutable": true,
5797
5815
  "locationInModule": {
5798
5816
  "filename": "src/projects/awscdk-construct-options.generated.ts",
5799
- "line": 818
5817
+ "line": 824
5800
5818
  },
5801
5819
  "name": "maxNodeVersion",
5802
5820
  "optional": true,
@@ -5815,7 +5833,7 @@
5815
5833
  "immutable": true,
5816
5834
  "locationInModule": {
5817
5835
  "filename": "src/projects/awscdk-construct-options.generated.ts",
5818
- "line": 662
5836
+ "line": 668
5819
5837
  },
5820
5838
  "name": "minMajorVersion",
5821
5839
  "optional": true,
@@ -5834,7 +5852,7 @@
5834
5852
  "immutable": true,
5835
5853
  "locationInModule": {
5836
5854
  "filename": "src/projects/awscdk-construct-options.generated.ts",
5837
- "line": 807
5855
+ "line": 813
5838
5856
  },
5839
5857
  "name": "minNodeVersion",
5840
5858
  "optional": true,
@@ -5852,7 +5870,7 @@
5852
5870
  "immutable": true,
5853
5871
  "locationInModule": {
5854
5872
  "filename": "src/projects/awscdk-construct-options.generated.ts",
5855
- "line": 1144
5873
+ "line": 1150
5856
5874
  },
5857
5875
  "name": "mise",
5858
5876
  "optional": true,
@@ -5871,7 +5889,7 @@
5871
5889
  "immutable": true,
5872
5890
  "locationInModule": {
5873
5891
  "filename": "src/projects/awscdk-construct-options.generated.ts",
5874
- "line": 652
5892
+ "line": 658
5875
5893
  },
5876
5894
  "name": "nextVersionCommand",
5877
5895
  "optional": true,
@@ -5889,7 +5907,7 @@
5889
5907
  "immutable": true,
5890
5908
  "locationInModule": {
5891
5909
  "filename": "src/projects/awscdk-construct-options.generated.ts",
5892
- "line": 792
5910
+ "line": 798
5893
5911
  },
5894
5912
  "name": "npmAccess",
5895
5913
  "optional": true,
@@ -5908,7 +5926,7 @@
5908
5926
  "immutable": true,
5909
5927
  "locationInModule": {
5910
5928
  "filename": "src/projects/awscdk-construct-options.generated.ts",
5911
- "line": 628
5929
+ "line": 634
5912
5930
  },
5913
5931
  "name": "npmDistTag",
5914
5932
  "optional": true,
@@ -5962,7 +5980,7 @@
5962
5980
  "immutable": true,
5963
5981
  "locationInModule": {
5964
5982
  "filename": "src/projects/awscdk-construct-options.generated.ts",
5965
- "line": 784
5983
+ "line": 790
5966
5984
  },
5967
5985
  "name": "npmProvenance",
5968
5986
  "optional": true,
@@ -5981,7 +5999,7 @@
5981
5999
  "immutable": true,
5982
6000
  "locationInModule": {
5983
6001
  "filename": "src/projects/awscdk-construct-options.generated.ts",
5984
- "line": 773
6002
+ "line": 779
5985
6003
  },
5986
6004
  "name": "npmRegistryUrl",
5987
6005
  "optional": true,
@@ -5999,7 +6017,7 @@
5999
6017
  "immutable": true,
6000
6018
  "locationInModule": {
6001
6019
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6002
- "line": 766
6020
+ "line": 772
6003
6021
  },
6004
6022
  "name": "npmTokenSecret",
6005
6023
  "optional": true,
@@ -6017,7 +6035,7 @@
6017
6035
  "immutable": true,
6018
6036
  "locationInModule": {
6019
6037
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6020
- "line": 760
6038
+ "line": 766
6021
6039
  },
6022
6040
  "name": "npmTrustedPublishing",
6023
6041
  "optional": true,
@@ -6036,7 +6054,7 @@
6036
6054
  "immutable": true,
6037
6055
  "locationInModule": {
6038
6056
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6039
- "line": 1100
6057
+ "line": 1106
6040
6058
  },
6041
6059
  "name": "outdir",
6042
6060
  "optional": true,
@@ -6072,7 +6090,7 @@
6072
6090
  "immutable": true,
6073
6091
  "locationInModule": {
6074
6092
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6075
- "line": 754
6093
+ "line": 760
6076
6094
  },
6077
6095
  "name": "packageManager",
6078
6096
  "optional": true,
@@ -6093,7 +6111,7 @@
6093
6111
  "immutable": true,
6094
6112
  "locationInModule": {
6095
6113
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6096
- "line": 748
6114
+ "line": 754
6097
6115
  },
6098
6116
  "name": "packageName",
6099
6117
  "optional": true,
@@ -6110,7 +6128,7 @@
6110
6128
  "immutable": true,
6111
6129
  "locationInModule": {
6112
6130
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6113
- "line": 1089
6131
+ "line": 1095
6114
6132
  },
6115
6133
  "name": "parent",
6116
6134
  "optional": true,
@@ -6127,7 +6145,7 @@
6127
6145
  "immutable": true,
6128
6146
  "locationInModule": {
6129
6147
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6130
- "line": 741
6148
+ "line": 747
6131
6149
  },
6132
6150
  "name": "peerDependencyOptions",
6133
6151
  "optional": true,
@@ -6146,7 +6164,7 @@
6146
6164
  "immutable": true,
6147
6165
  "locationInModule": {
6148
6166
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6149
- "line": 736
6167
+ "line": 742
6150
6168
  },
6151
6169
  "name": "peerDeps",
6152
6170
  "optional": true,
@@ -6169,7 +6187,7 @@
6169
6187
  "immutable": true,
6170
6188
  "locationInModule": {
6171
6189
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6172
- "line": 717
6190
+ "line": 723
6173
6191
  },
6174
6192
  "name": "pnpmVersion",
6175
6193
  "optional": true,
@@ -6187,7 +6205,7 @@
6187
6205
  "immutable": true,
6188
6206
  "locationInModule": {
6189
6207
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6190
- "line": 620
6208
+ "line": 626
6191
6209
  },
6192
6210
  "name": "postBuildSteps",
6193
6211
  "optional": true,
@@ -6210,7 +6228,7 @@
6210
6228
  "immutable": true,
6211
6229
  "locationInModule": {
6212
6230
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6213
- "line": 614
6231
+ "line": 620
6214
6232
  },
6215
6233
  "name": "prerelease",
6216
6234
  "optional": true,
@@ -6229,7 +6247,7 @@
6229
6247
  "immutable": true,
6230
6248
  "locationInModule": {
6231
6249
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6232
- "line": 1084
6250
+ "line": 1090
6233
6251
  },
6234
6252
  "name": "projenCommand",
6235
6253
  "optional": true,
@@ -6247,7 +6265,7 @@
6247
6265
  "immutable": true,
6248
6266
  "locationInModule": {
6249
6267
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6250
- "line": 1000
6268
+ "line": 1006
6251
6269
  },
6252
6270
  "name": "projenCredentials",
6253
6271
  "optional": true,
@@ -6301,7 +6319,7 @@
6301
6319
  "immutable": true,
6302
6320
  "locationInModule": {
6303
6321
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6304
- "line": 1077
6322
+ "line": 1083
6305
6323
  },
6306
6324
  "name": "projenrcJson",
6307
6325
  "optional": true,
@@ -6319,7 +6337,7 @@
6319
6337
  "immutable": true,
6320
6338
  "locationInModule": {
6321
6339
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6322
- "line": 1071
6340
+ "line": 1077
6323
6341
  },
6324
6342
  "name": "projenrcJsonOptions",
6325
6343
  "optional": true,
@@ -6411,7 +6429,7 @@
6411
6429
  "immutable": true,
6412
6430
  "locationInModule": {
6413
6431
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6414
- "line": 608
6432
+ "line": 614
6415
6433
  },
6416
6434
  "name": "publishDryRun",
6417
6435
  "optional": true,
@@ -6430,7 +6448,7 @@
6430
6448
  "immutable": true,
6431
6449
  "locationInModule": {
6432
6450
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6433
- "line": 602
6451
+ "line": 608
6434
6452
  },
6435
6453
  "name": "publishTasks",
6436
6454
  "optional": true,
@@ -6561,7 +6579,7 @@
6561
6579
  "immutable": true,
6562
6580
  "locationInModule": {
6563
6581
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6564
- "line": 994
6582
+ "line": 1000
6565
6583
  },
6566
6584
  "name": "readme",
6567
6585
  "optional": true,
@@ -6579,7 +6597,7 @@
6579
6597
  "immutable": true,
6580
6598
  "locationInModule": {
6581
6599
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6582
- "line": 594
6600
+ "line": 600
6583
6601
  },
6584
6602
  "name": "releasableCommits",
6585
6603
  "optional": true,
@@ -6616,7 +6634,7 @@
6616
6634
  "immutable": true,
6617
6635
  "locationInModule": {
6618
6636
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6619
- "line": 588
6637
+ "line": 594
6620
6638
  },
6621
6639
  "name": "releaseBranches",
6622
6640
  "optional": true,
@@ -6640,7 +6658,7 @@
6640
6658
  "immutable": true,
6641
6659
  "locationInModule": {
6642
6660
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6643
- "line": 575
6661
+ "line": 581
6644
6662
  },
6645
6663
  "name": "releaseEnvironment",
6646
6664
  "optional": true,
@@ -6658,7 +6676,7 @@
6658
6676
  "immutable": true,
6659
6677
  "locationInModule": {
6660
6678
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6661
- "line": 564
6679
+ "line": 570
6662
6680
  },
6663
6681
  "name": "releaseFailureIssue",
6664
6682
  "optional": true,
@@ -6677,7 +6695,7 @@
6677
6695
  "immutable": true,
6678
6696
  "locationInModule": {
6679
6697
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6680
- "line": 558
6698
+ "line": 564
6681
6699
  },
6682
6700
  "name": "releaseFailureIssueLabel",
6683
6701
  "optional": true,
@@ -6696,7 +6714,7 @@
6696
6714
  "immutable": true,
6697
6715
  "locationInModule": {
6698
6716
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6699
- "line": 551
6717
+ "line": 557
6700
6718
  },
6701
6719
  "name": "releaseTagPrefix",
6702
6720
  "optional": true,
@@ -6732,7 +6750,7 @@
6732
6750
  "immutable": true,
6733
6751
  "locationInModule": {
6734
6752
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6735
- "line": 541
6753
+ "line": 547
6736
6754
  },
6737
6755
  "name": "releaseTrigger",
6738
6756
  "optional": true,
@@ -6750,7 +6768,7 @@
6750
6768
  "immutable": true,
6751
6769
  "locationInModule": {
6752
6770
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6753
- "line": 535
6771
+ "line": 541
6754
6772
  },
6755
6773
  "name": "releaseWorkflowEnv",
6756
6774
  "optional": true,
@@ -6773,7 +6791,7 @@
6773
6791
  "immutable": true,
6774
6792
  "locationInModule": {
6775
6793
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6776
- "line": 529
6794
+ "line": 535
6777
6795
  },
6778
6796
  "name": "releaseWorkflowName",
6779
6797
  "optional": true,
@@ -6790,7 +6808,7 @@
6790
6808
  "immutable": true,
6791
6809
  "locationInModule": {
6792
6810
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6793
- "line": 523
6811
+ "line": 529
6794
6812
  },
6795
6813
  "name": "releaseWorkflowSetupSteps",
6796
6814
  "optional": true,
@@ -6813,7 +6831,7 @@
6813
6831
  "immutable": true,
6814
6832
  "locationInModule": {
6815
6833
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6816
- "line": 1065
6834
+ "line": 1071
6817
6835
  },
6818
6836
  "name": "renovatebot",
6819
6837
  "optional": true,
@@ -6831,7 +6849,7 @@
6831
6849
  "immutable": true,
6832
6850
  "locationInModule": {
6833
6851
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6834
- "line": 1059
6852
+ "line": 1065
6835
6853
  },
6836
6854
  "name": "renovatebotOptions",
6837
6855
  "optional": true,
@@ -6849,7 +6867,7 @@
6849
6867
  "immutable": true,
6850
6868
  "locationInModule": {
6851
6869
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6852
- "line": 711
6870
+ "line": 717
6853
6871
  },
6854
6872
  "name": "repository",
6855
6873
  "optional": true,
@@ -6866,7 +6884,7 @@
6866
6884
  "immutable": true,
6867
6885
  "locationInModule": {
6868
6886
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6869
- "line": 705
6887
+ "line": 711
6870
6888
  },
6871
6889
  "name": "repositoryDirectory",
6872
6890
  "optional": true,
@@ -6901,7 +6919,7 @@
6901
6919
  "immutable": true,
6902
6920
  "locationInModule": {
6903
6921
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6904
- "line": 700
6922
+ "line": 706
6905
6923
  },
6906
6924
  "name": "scopedPackagesOptions",
6907
6925
  "optional": true,
@@ -6941,7 +6959,7 @@
6941
6959
  "immutable": true,
6942
6960
  "locationInModule": {
6943
6961
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6944
- "line": 694
6962
+ "line": 700
6945
6963
  },
6946
6964
  "name": "stability",
6947
6965
  "optional": true,
@@ -6960,7 +6978,7 @@
6960
6978
  "immutable": true,
6961
6979
  "locationInModule": {
6962
6980
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6963
- "line": 988
6981
+ "line": 994
6964
6982
  },
6965
6983
  "name": "stale",
6966
6984
  "optional": true,
@@ -6979,7 +6997,7 @@
6979
6997
  "immutable": true,
6980
6998
  "locationInModule": {
6981
6999
  "filename": "src/projects/awscdk-construct-options.generated.ts",
6982
- "line": 981
7000
+ "line": 987
6983
7001
  },
6984
7002
  "name": "staleOptions",
6985
7003
  "optional": true,
@@ -7090,7 +7108,7 @@
7090
7108
  "immutable": true,
7091
7109
  "locationInModule": {
7092
7110
  "filename": "src/projects/awscdk-construct-options.generated.ts",
7093
- "line": 518
7111
+ "line": 524
7094
7112
  },
7095
7113
  "name": "versionrcOptions",
7096
7114
  "optional": true,
@@ -7113,7 +7131,7 @@
7113
7131
  "immutable": true,
7114
7132
  "locationInModule": {
7115
7133
  "filename": "src/projects/awscdk-construct-options.generated.ts",
7116
- "line": 1139
7134
+ "line": 1145
7117
7135
  },
7118
7136
  "name": "vitest",
7119
7137
  "optional": true,
@@ -7131,7 +7149,7 @@
7131
7149
  "immutable": true,
7132
7150
  "locationInModule": {
7133
7151
  "filename": "src/projects/awscdk-construct-options.generated.ts",
7134
- "line": 1134
7152
+ "line": 1140
7135
7153
  },
7136
7154
  "name": "vitestOptions",
7137
7155
  "optional": true,
@@ -7150,7 +7168,7 @@
7150
7168
  "immutable": true,
7151
7169
  "locationInModule": {
7152
7170
  "filename": "src/projects/awscdk-construct-options.generated.ts",
7153
- "line": 974
7171
+ "line": 980
7154
7172
  },
7155
7173
  "name": "vscode",
7156
7174
  "optional": true,
@@ -7191,7 +7209,7 @@
7191
7209
  "immutable": true,
7192
7210
  "locationInModule": {
7193
7211
  "filename": "src/projects/awscdk-construct-options.generated.ts",
7194
- "line": 511
7212
+ "line": 517
7195
7213
  },
7196
7214
  "name": "workflowContainerImage",
7197
7215
  "optional": true,
@@ -7268,7 +7286,7 @@
7268
7286
  "immutable": true,
7269
7287
  "locationInModule": {
7270
7288
  "filename": "src/projects/awscdk-construct-options.generated.ts",
7271
- "line": 505
7289
+ "line": 511
7272
7290
  },
7273
7291
  "name": "workflowRunsOn",
7274
7292
  "optional": true,
@@ -7294,7 +7312,7 @@
7294
7312
  "immutable": true,
7295
7313
  "locationInModule": {
7296
7314
  "filename": "src/projects/awscdk-construct-options.generated.ts",
7297
- "line": 497
7315
+ "line": 503
7298
7316
  },
7299
7317
  "name": "workflowRunsOnGroup",
7300
7318
  "optional": true,
@@ -7312,7 +7330,7 @@
7312
7330
  "immutable": true,
7313
7331
  "locationInModule": {
7314
7332
  "filename": "src/projects/awscdk-construct-options.generated.ts",
7315
- "line": 689
7333
+ "line": 695
7316
7334
  },
7317
7335
  "name": "yarnBerryOptions",
7318
7336
  "optional": true,
@@ -7397,7 +7415,7 @@
7397
7415
  "immutable": true,
7398
7416
  "locationInModule": {
7399
7417
  "filename": "src/projects/awscdk-app-options.generated.ts",
7400
- "line": 439
7418
+ "line": 445
7401
7419
  },
7402
7420
  "name": "defaultReleaseBranch",
7403
7421
  "type": {
@@ -7417,7 +7435,7 @@
7417
7435
  "immutable": true,
7418
7436
  "locationInModule": {
7419
7437
  "filename": "src/projects/awscdk-app-options.generated.ts",
7420
- "line": 1078
7438
+ "line": 1084
7421
7439
  },
7422
7440
  "name": "name",
7423
7441
  "type": {
@@ -7435,7 +7453,7 @@
7435
7453
  "immutable": true,
7436
7454
  "locationInModule": {
7437
7455
  "filename": "src/projects/awscdk-app-options.generated.ts",
7438
- "line": 916
7456
+ "line": 922
7439
7457
  },
7440
7458
  "name": "allowLibraryDependencies",
7441
7459
  "optional": true,
@@ -7488,7 +7506,7 @@
7488
7506
  "immutable": true,
7489
7507
  "locationInModule": {
7490
7508
  "filename": "src/projects/awscdk-app-options.generated.ts",
7491
- "line": 433
7509
+ "line": 439
7492
7510
  },
7493
7511
  "name": "artifactsDirectory",
7494
7512
  "optional": true,
@@ -7507,7 +7525,7 @@
7507
7525
  "immutable": true,
7508
7526
  "locationInModule": {
7509
7527
  "filename": "src/projects/awscdk-app-options.generated.ts",
7510
- "line": 427
7528
+ "line": 433
7511
7529
  },
7512
7530
  "name": "auditDeps",
7513
7531
  "optional": true,
@@ -7525,7 +7543,7 @@
7525
7543
  "immutable": true,
7526
7544
  "locationInModule": {
7527
7545
  "filename": "src/projects/awscdk-app-options.generated.ts",
7528
- "line": 418
7546
+ "line": 424
7529
7547
  },
7530
7548
  "name": "auditDepsOptions",
7531
7549
  "optional": true,
@@ -7542,7 +7560,7 @@
7542
7560
  "immutable": true,
7543
7561
  "locationInModule": {
7544
7562
  "filename": "src/projects/awscdk-app-options.generated.ts",
7545
- "line": 908
7563
+ "line": 914
7546
7564
  },
7547
7565
  "name": "authorEmail",
7548
7566
  "optional": true,
@@ -7559,7 +7577,7 @@
7559
7577
  "immutable": true,
7560
7578
  "locationInModule": {
7561
7579
  "filename": "src/projects/awscdk-app-options.generated.ts",
7562
- "line": 903
7580
+ "line": 909
7563
7581
  },
7564
7582
  "name": "authorName",
7565
7583
  "optional": true,
@@ -7576,7 +7594,7 @@
7576
7594
  "immutable": true,
7577
7595
  "locationInModule": {
7578
7596
  "filename": "src/projects/awscdk-app-options.generated.ts",
7579
- "line": 898
7597
+ "line": 904
7580
7598
  },
7581
7599
  "name": "authorOrganization",
7582
7600
  "optional": true,
@@ -7593,7 +7611,7 @@
7593
7611
  "immutable": true,
7594
7612
  "locationInModule": {
7595
7613
  "filename": "src/projects/awscdk-app-options.generated.ts",
7596
- "line": 893
7614
+ "line": 899
7597
7615
  },
7598
7616
  "name": "authorUrl",
7599
7617
  "optional": true,
@@ -7611,7 +7629,7 @@
7611
7629
  "immutable": true,
7612
7630
  "locationInModule": {
7613
7631
  "filename": "src/projects/awscdk-app-options.generated.ts",
7614
- "line": 1002
7632
+ "line": 1008
7615
7633
  },
7616
7634
  "name": "autoApproveOptions",
7617
7635
  "optional": true,
@@ -7630,7 +7648,7 @@
7630
7648
  "immutable": true,
7631
7649
  "locationInModule": {
7632
7650
  "filename": "src/projects/awscdk-app-options.generated.ts",
7633
- "line": 412
7651
+ "line": 418
7634
7652
  },
7635
7653
  "name": "autoApproveUpgrades",
7636
7654
  "optional": true,
@@ -7648,7 +7666,7 @@
7648
7666
  "immutable": true,
7649
7667
  "locationInModule": {
7650
7668
  "filename": "src/projects/awscdk-app-options.generated.ts",
7651
- "line": 888
7669
+ "line": 894
7652
7670
  },
7653
7671
  "name": "autoDetectBin",
7654
7672
  "optional": true,
@@ -7667,7 +7685,7 @@
7667
7685
  "immutable": true,
7668
7686
  "locationInModule": {
7669
7687
  "filename": "src/projects/awscdk-app-options.generated.ts",
7670
- "line": 996
7688
+ "line": 1002
7671
7689
  },
7672
7690
  "name": "autoMerge",
7673
7691
  "optional": true,
@@ -7686,7 +7704,7 @@
7686
7704
  "immutable": true,
7687
7705
  "locationInModule": {
7688
7706
  "filename": "src/projects/awscdk-app-options.generated.ts",
7689
- "line": 988
7707
+ "line": 994
7690
7708
  },
7691
7709
  "name": "autoMergeOptions",
7692
7710
  "optional": true,
@@ -7704,7 +7722,7 @@
7704
7722
  "immutable": true,
7705
7723
  "locationInModule": {
7706
7724
  "filename": "src/projects/awscdk-app-options.generated.ts",
7707
- "line": 882
7725
+ "line": 888
7708
7726
  },
7709
7727
  "name": "bin",
7710
7728
  "optional": true,
@@ -7717,6 +7735,24 @@
7717
7735
  }
7718
7736
  }
7719
7737
  },
7738
+ {
7739
+ "abstract": true,
7740
+ "docs": {
7741
+ "default": "false",
7742
+ "stability": "experimental",
7743
+ "summary": "Setup Biome."
7744
+ },
7745
+ "immutable": true,
7746
+ "locationInModule": {
7747
+ "filename": "src/projects/awscdk-app-options.generated.ts",
7748
+ "line": 411
7749
+ },
7750
+ "name": "biome",
7751
+ "optional": true,
7752
+ "type": {
7753
+ "primitive": "boolean"
7754
+ }
7755
+ },
7720
7756
  {
7721
7757
  "abstract": true,
7722
7758
  "docs": {
@@ -7744,7 +7780,7 @@
7744
7780
  "immutable": true,
7745
7781
  "locationInModule": {
7746
7782
  "filename": "src/projects/awscdk-app-options.generated.ts",
7747
- "line": 874
7783
+ "line": 880
7748
7784
  },
7749
7785
  "name": "bugsEmail",
7750
7786
  "optional": true,
@@ -7761,7 +7797,7 @@
7761
7797
  "immutable": true,
7762
7798
  "locationInModule": {
7763
7799
  "filename": "src/projects/awscdk-app-options.generated.ts",
7764
- "line": 869
7800
+ "line": 875
7765
7801
  },
7766
7802
  "name": "bugsUrl",
7767
7803
  "optional": true,
@@ -7834,7 +7870,7 @@
7834
7870
  "immutable": true,
7835
7871
  "locationInModule": {
7836
7872
  "filename": "src/projects/awscdk-app-options.generated.ts",
7837
- "line": 632
7873
+ "line": 638
7838
7874
  },
7839
7875
  "name": "bumpPackage",
7840
7876
  "optional": true,
@@ -7852,7 +7888,7 @@
7852
7888
  "immutable": true,
7853
7889
  "locationInModule": {
7854
7890
  "filename": "src/projects/awscdk-app-options.generated.ts",
7855
- "line": 864
7891
+ "line": 870
7856
7892
  },
7857
7893
  "name": "bundledDeps",
7858
7894
  "optional": true,
@@ -7892,7 +7928,7 @@
7892
7928
  "immutable": true,
7893
7929
  "locationInModule": {
7894
7930
  "filename": "src/projects/awscdk-app-options.generated.ts",
7895
- "line": 849
7931
+ "line": 855
7896
7932
  },
7897
7933
  "name": "bunVersion",
7898
7934
  "optional": true,
@@ -8003,7 +8039,7 @@
8003
8039
  "immutable": true,
8004
8040
  "locationInModule": {
8005
8041
  "filename": "src/projects/awscdk-app-options.generated.ts",
8006
- "line": 980
8042
+ "line": 986
8007
8043
  },
8008
8044
  "name": "clobber",
8009
8045
  "optional": true,
@@ -8022,7 +8058,7 @@
8022
8058
  "immutable": true,
8023
8059
  "locationInModule": {
8024
8060
  "filename": "src/projects/awscdk-app-options.generated.ts",
8025
- "line": 843
8061
+ "line": 849
8026
8062
  },
8027
8063
  "name": "codeArtifactOptions",
8028
8064
  "optional": true,
@@ -8076,7 +8112,7 @@
8076
8112
  "immutable": true,
8077
8113
  "locationInModule": {
8078
8114
  "filename": "src/projects/awscdk-app-options.generated.ts",
8079
- "line": 1071
8115
+ "line": 1077
8080
8116
  },
8081
8117
  "name": "commitGenerated",
8082
8118
  "optional": true,
@@ -8212,7 +8248,7 @@
8212
8248
  "immutable": true,
8213
8249
  "locationInModule": {
8214
8250
  "filename": "src/projects/awscdk-app-options.generated.ts",
8215
- "line": 836
8251
+ "line": 842
8216
8252
  },
8217
8253
  "name": "deps",
8218
8254
  "optional": true,
@@ -8275,7 +8311,7 @@
8275
8311
  "immutable": true,
8276
8312
  "locationInModule": {
8277
8313
  "filename": "src/projects/awscdk-app-options.generated.ts",
8278
- "line": 823
8314
+ "line": 829
8279
8315
  },
8280
8316
  "name": "description",
8281
8317
  "optional": true,
@@ -8293,7 +8329,7 @@
8293
8329
  "immutable": true,
8294
8330
  "locationInModule": {
8295
8331
  "filename": "src/projects/awscdk-app-options.generated.ts",
8296
- "line": 974
8332
+ "line": 980
8297
8333
  },
8298
8334
  "name": "devContainer",
8299
8335
  "optional": true,
@@ -8315,7 +8351,7 @@
8315
8351
  "immutable": true,
8316
8352
  "locationInModule": {
8317
8353
  "filename": "src/projects/awscdk-app-options.generated.ts",
8318
- "line": 815
8354
+ "line": 821
8319
8355
  },
8320
8356
  "name": "devDeps",
8321
8357
  "optional": true,
@@ -8428,7 +8464,7 @@
8428
8464
  "immutable": true,
8429
8465
  "locationInModule": {
8430
8466
  "filename": "src/projects/awscdk-app-options.generated.ts",
8431
- "line": 798
8467
+ "line": 804
8432
8468
  },
8433
8469
  "name": "entrypoint",
8434
8470
  "optional": true,
@@ -8501,7 +8537,7 @@
8501
8537
  "immutable": true,
8502
8538
  "locationInModule": {
8503
8539
  "filename": "src/projects/awscdk-app-options.generated.ts",
8504
- "line": 968
8540
+ "line": 974
8505
8541
  },
8506
8542
  "name": "github",
8507
8543
  "optional": true,
@@ -8519,7 +8555,7 @@
8519
8555
  "immutable": true,
8520
8556
  "locationInModule": {
8521
8557
  "filename": "src/projects/awscdk-app-options.generated.ts",
8522
- "line": 961
8558
+ "line": 967
8523
8559
  },
8524
8560
  "name": "githubOptions",
8525
8561
  "optional": true,
@@ -8558,7 +8594,7 @@
8558
8594
  "immutable": true,
8559
8595
  "locationInModule": {
8560
8596
  "filename": "src/projects/awscdk-app-options.generated.ts",
8561
- "line": 1065
8597
+ "line": 1071
8562
8598
  },
8563
8599
  "name": "gitIgnoreOptions",
8564
8600
  "optional": true,
@@ -8575,7 +8611,7 @@
8575
8611
  "immutable": true,
8576
8612
  "locationInModule": {
8577
8613
  "filename": "src/projects/awscdk-app-options.generated.ts",
8578
- "line": 1060
8614
+ "line": 1066
8579
8615
  },
8580
8616
  "name": "gitOptions",
8581
8617
  "optional": true,
@@ -8593,7 +8629,7 @@
8593
8629
  "immutable": true,
8594
8630
  "locationInModule": {
8595
8631
  "filename": "src/projects/awscdk-app-options.generated.ts",
8596
- "line": 955
8632
+ "line": 961
8597
8633
  },
8598
8634
  "name": "gitpod",
8599
8635
  "optional": true,
@@ -8610,7 +8646,7 @@
8610
8646
  "immutable": true,
8611
8647
  "locationInModule": {
8612
8648
  "filename": "src/projects/awscdk-app-options.generated.ts",
8613
- "line": 791
8649
+ "line": 797
8614
8650
  },
8615
8651
  "name": "homepage",
8616
8652
  "optional": true,
@@ -8646,7 +8682,7 @@
8646
8682
  "immutable": true,
8647
8683
  "locationInModule": {
8648
8684
  "filename": "src/projects/awscdk-app-options.generated.ts",
8649
- "line": 625
8685
+ "line": 631
8650
8686
  },
8651
8687
  "name": "jsiiReleaseVersion",
8652
8688
  "optional": true,
@@ -8663,7 +8699,7 @@
8663
8699
  "immutable": true,
8664
8700
  "locationInModule": {
8665
8701
  "filename": "src/projects/awscdk-app-options.generated.ts",
8666
- "line": 786
8702
+ "line": 792
8667
8703
  },
8668
8704
  "name": "keywords",
8669
8705
  "optional": true,
@@ -8759,7 +8795,7 @@
8759
8795
  "immutable": true,
8760
8796
  "locationInModule": {
8761
8797
  "filename": "src/projects/awscdk-app-options.generated.ts",
8762
- "line": 781
8798
+ "line": 787
8763
8799
  },
8764
8800
  "name": "license",
8765
8801
  "optional": true,
@@ -8777,7 +8813,7 @@
8777
8813
  "immutable": true,
8778
8814
  "locationInModule": {
8779
8815
  "filename": "src/projects/awscdk-app-options.generated.ts",
8780
- "line": 773
8816
+ "line": 779
8781
8817
  },
8782
8818
  "name": "licensed",
8783
8819
  "optional": true,
@@ -8795,7 +8831,7 @@
8795
8831
  "immutable": true,
8796
8832
  "locationInModule": {
8797
8833
  "filename": "src/projects/awscdk-app-options.generated.ts",
8798
- "line": 1055
8834
+ "line": 1061
8799
8835
  },
8800
8836
  "name": "logging",
8801
8837
  "optional": true,
@@ -8814,7 +8850,7 @@
8814
8850
  "immutable": true,
8815
8851
  "locationInModule": {
8816
8852
  "filename": "src/projects/awscdk-app-options.generated.ts",
8817
- "line": 619
8853
+ "line": 625
8818
8854
  },
8819
8855
  "name": "majorVersion",
8820
8856
  "optional": true,
@@ -8833,7 +8869,7 @@
8833
8869
  "immutable": true,
8834
8870
  "locationInModule": {
8835
8871
  "filename": "src/projects/awscdk-app-options.generated.ts",
8836
- "line": 767
8872
+ "line": 773
8837
8873
  },
8838
8874
  "name": "maxNodeVersion",
8839
8875
  "optional": true,
@@ -8852,7 +8888,7 @@
8852
8888
  "immutable": true,
8853
8889
  "locationInModule": {
8854
8890
  "filename": "src/projects/awscdk-app-options.generated.ts",
8855
- "line": 611
8891
+ "line": 617
8856
8892
  },
8857
8893
  "name": "minMajorVersion",
8858
8894
  "optional": true,
@@ -8871,7 +8907,7 @@
8871
8907
  "immutable": true,
8872
8908
  "locationInModule": {
8873
8909
  "filename": "src/projects/awscdk-app-options.generated.ts",
8874
- "line": 756
8910
+ "line": 762
8875
8911
  },
8876
8912
  "name": "minNodeVersion",
8877
8913
  "optional": true,
@@ -8889,7 +8925,7 @@
8889
8925
  "immutable": true,
8890
8926
  "locationInModule": {
8891
8927
  "filename": "src/projects/awscdk-app-options.generated.ts",
8892
- "line": 1093
8928
+ "line": 1099
8893
8929
  },
8894
8930
  "name": "mise",
8895
8931
  "optional": true,
@@ -8908,7 +8944,7 @@
8908
8944
  "immutable": true,
8909
8945
  "locationInModule": {
8910
8946
  "filename": "src/projects/awscdk-app-options.generated.ts",
8911
- "line": 601
8947
+ "line": 607
8912
8948
  },
8913
8949
  "name": "nextVersionCommand",
8914
8950
  "optional": true,
@@ -8926,7 +8962,7 @@
8926
8962
  "immutable": true,
8927
8963
  "locationInModule": {
8928
8964
  "filename": "src/projects/awscdk-app-options.generated.ts",
8929
- "line": 741
8965
+ "line": 747
8930
8966
  },
8931
8967
  "name": "npmAccess",
8932
8968
  "optional": true,
@@ -8945,7 +8981,7 @@
8945
8981
  "immutable": true,
8946
8982
  "locationInModule": {
8947
8983
  "filename": "src/projects/awscdk-app-options.generated.ts",
8948
- "line": 577
8984
+ "line": 583
8949
8985
  },
8950
8986
  "name": "npmDistTag",
8951
8987
  "optional": true,
@@ -8999,7 +9035,7 @@
8999
9035
  "immutable": true,
9000
9036
  "locationInModule": {
9001
9037
  "filename": "src/projects/awscdk-app-options.generated.ts",
9002
- "line": 733
9038
+ "line": 739
9003
9039
  },
9004
9040
  "name": "npmProvenance",
9005
9041
  "optional": true,
@@ -9018,7 +9054,7 @@
9018
9054
  "immutable": true,
9019
9055
  "locationInModule": {
9020
9056
  "filename": "src/projects/awscdk-app-options.generated.ts",
9021
- "line": 722
9057
+ "line": 728
9022
9058
  },
9023
9059
  "name": "npmRegistryUrl",
9024
9060
  "optional": true,
@@ -9036,7 +9072,7 @@
9036
9072
  "immutable": true,
9037
9073
  "locationInModule": {
9038
9074
  "filename": "src/projects/awscdk-app-options.generated.ts",
9039
- "line": 715
9075
+ "line": 721
9040
9076
  },
9041
9077
  "name": "npmTokenSecret",
9042
9078
  "optional": true,
@@ -9054,7 +9090,7 @@
9054
9090
  "immutable": true,
9055
9091
  "locationInModule": {
9056
9092
  "filename": "src/projects/awscdk-app-options.generated.ts",
9057
- "line": 709
9093
+ "line": 715
9058
9094
  },
9059
9095
  "name": "npmTrustedPublishing",
9060
9096
  "optional": true,
@@ -9073,7 +9109,7 @@
9073
9109
  "immutable": true,
9074
9110
  "locationInModule": {
9075
9111
  "filename": "src/projects/awscdk-app-options.generated.ts",
9076
- "line": 1049
9112
+ "line": 1055
9077
9113
  },
9078
9114
  "name": "outdir",
9079
9115
  "optional": true,
@@ -9109,7 +9145,7 @@
9109
9145
  "immutable": true,
9110
9146
  "locationInModule": {
9111
9147
  "filename": "src/projects/awscdk-app-options.generated.ts",
9112
- "line": 703
9148
+ "line": 709
9113
9149
  },
9114
9150
  "name": "packageManager",
9115
9151
  "optional": true,
@@ -9130,7 +9166,7 @@
9130
9166
  "immutable": true,
9131
9167
  "locationInModule": {
9132
9168
  "filename": "src/projects/awscdk-app-options.generated.ts",
9133
- "line": 697
9169
+ "line": 703
9134
9170
  },
9135
9171
  "name": "packageName",
9136
9172
  "optional": true,
@@ -9147,7 +9183,7 @@
9147
9183
  "immutable": true,
9148
9184
  "locationInModule": {
9149
9185
  "filename": "src/projects/awscdk-app-options.generated.ts",
9150
- "line": 1038
9186
+ "line": 1044
9151
9187
  },
9152
9188
  "name": "parent",
9153
9189
  "optional": true,
@@ -9164,7 +9200,7 @@
9164
9200
  "immutable": true,
9165
9201
  "locationInModule": {
9166
9202
  "filename": "src/projects/awscdk-app-options.generated.ts",
9167
- "line": 690
9203
+ "line": 696
9168
9204
  },
9169
9205
  "name": "peerDependencyOptions",
9170
9206
  "optional": true,
@@ -9183,7 +9219,7 @@
9183
9219
  "immutable": true,
9184
9220
  "locationInModule": {
9185
9221
  "filename": "src/projects/awscdk-app-options.generated.ts",
9186
- "line": 685
9222
+ "line": 691
9187
9223
  },
9188
9224
  "name": "peerDeps",
9189
9225
  "optional": true,
@@ -9206,7 +9242,7 @@
9206
9242
  "immutable": true,
9207
9243
  "locationInModule": {
9208
9244
  "filename": "src/projects/awscdk-app-options.generated.ts",
9209
- "line": 666
9245
+ "line": 672
9210
9246
  },
9211
9247
  "name": "pnpmVersion",
9212
9248
  "optional": true,
@@ -9224,7 +9260,7 @@
9224
9260
  "immutable": true,
9225
9261
  "locationInModule": {
9226
9262
  "filename": "src/projects/awscdk-app-options.generated.ts",
9227
- "line": 569
9263
+ "line": 575
9228
9264
  },
9229
9265
  "name": "postBuildSteps",
9230
9266
  "optional": true,
@@ -9247,7 +9283,7 @@
9247
9283
  "immutable": true,
9248
9284
  "locationInModule": {
9249
9285
  "filename": "src/projects/awscdk-app-options.generated.ts",
9250
- "line": 563
9286
+ "line": 569
9251
9287
  },
9252
9288
  "name": "prerelease",
9253
9289
  "optional": true,
@@ -9266,7 +9302,7 @@
9266
9302
  "immutable": true,
9267
9303
  "locationInModule": {
9268
9304
  "filename": "src/projects/awscdk-app-options.generated.ts",
9269
- "line": 1033
9305
+ "line": 1039
9270
9306
  },
9271
9307
  "name": "projenCommand",
9272
9308
  "optional": true,
@@ -9284,7 +9320,7 @@
9284
9320
  "immutable": true,
9285
9321
  "locationInModule": {
9286
9322
  "filename": "src/projects/awscdk-app-options.generated.ts",
9287
- "line": 949
9323
+ "line": 955
9288
9324
  },
9289
9325
  "name": "projenCredentials",
9290
9326
  "optional": true,
@@ -9338,7 +9374,7 @@
9338
9374
  "immutable": true,
9339
9375
  "locationInModule": {
9340
9376
  "filename": "src/projects/awscdk-app-options.generated.ts",
9341
- "line": 1026
9377
+ "line": 1032
9342
9378
  },
9343
9379
  "name": "projenrcJson",
9344
9380
  "optional": true,
@@ -9356,7 +9392,7 @@
9356
9392
  "immutable": true,
9357
9393
  "locationInModule": {
9358
9394
  "filename": "src/projects/awscdk-app-options.generated.ts",
9359
- "line": 1020
9395
+ "line": 1026
9360
9396
  },
9361
9397
  "name": "projenrcJsonOptions",
9362
9398
  "optional": true,
@@ -9448,7 +9484,7 @@
9448
9484
  "immutable": true,
9449
9485
  "locationInModule": {
9450
9486
  "filename": "src/projects/awscdk-app-options.generated.ts",
9451
- "line": 557
9487
+ "line": 563
9452
9488
  },
9453
9489
  "name": "publishDryRun",
9454
9490
  "optional": true,
@@ -9467,7 +9503,7 @@
9467
9503
  "immutable": true,
9468
9504
  "locationInModule": {
9469
9505
  "filename": "src/projects/awscdk-app-options.generated.ts",
9470
- "line": 551
9506
+ "line": 557
9471
9507
  },
9472
9508
  "name": "publishTasks",
9473
9509
  "optional": true,
@@ -9526,7 +9562,7 @@
9526
9562
  "immutable": true,
9527
9563
  "locationInModule": {
9528
9564
  "filename": "src/projects/awscdk-app-options.generated.ts",
9529
- "line": 943
9565
+ "line": 949
9530
9566
  },
9531
9567
  "name": "readme",
9532
9568
  "optional": true,
@@ -9544,7 +9580,7 @@
9544
9580
  "immutable": true,
9545
9581
  "locationInModule": {
9546
9582
  "filename": "src/projects/awscdk-app-options.generated.ts",
9547
- "line": 543
9583
+ "line": 549
9548
9584
  },
9549
9585
  "name": "releasableCommits",
9550
9586
  "optional": true,
@@ -9581,7 +9617,7 @@
9581
9617
  "immutable": true,
9582
9618
  "locationInModule": {
9583
9619
  "filename": "src/projects/awscdk-app-options.generated.ts",
9584
- "line": 537
9620
+ "line": 543
9585
9621
  },
9586
9622
  "name": "releaseBranches",
9587
9623
  "optional": true,
@@ -9605,7 +9641,7 @@
9605
9641
  "immutable": true,
9606
9642
  "locationInModule": {
9607
9643
  "filename": "src/projects/awscdk-app-options.generated.ts",
9608
- "line": 524
9644
+ "line": 530
9609
9645
  },
9610
9646
  "name": "releaseEnvironment",
9611
9647
  "optional": true,
@@ -9623,7 +9659,7 @@
9623
9659
  "immutable": true,
9624
9660
  "locationInModule": {
9625
9661
  "filename": "src/projects/awscdk-app-options.generated.ts",
9626
- "line": 513
9662
+ "line": 519
9627
9663
  },
9628
9664
  "name": "releaseFailureIssue",
9629
9665
  "optional": true,
@@ -9642,7 +9678,7 @@
9642
9678
  "immutable": true,
9643
9679
  "locationInModule": {
9644
9680
  "filename": "src/projects/awscdk-app-options.generated.ts",
9645
- "line": 507
9681
+ "line": 513
9646
9682
  },
9647
9683
  "name": "releaseFailureIssueLabel",
9648
9684
  "optional": true,
@@ -9661,7 +9697,7 @@
9661
9697
  "immutable": true,
9662
9698
  "locationInModule": {
9663
9699
  "filename": "src/projects/awscdk-app-options.generated.ts",
9664
- "line": 500
9700
+ "line": 506
9665
9701
  },
9666
9702
  "name": "releaseTagPrefix",
9667
9703
  "optional": true,
@@ -9697,7 +9733,7 @@
9697
9733
  "immutable": true,
9698
9734
  "locationInModule": {
9699
9735
  "filename": "src/projects/awscdk-app-options.generated.ts",
9700
- "line": 490
9736
+ "line": 496
9701
9737
  },
9702
9738
  "name": "releaseTrigger",
9703
9739
  "optional": true,
@@ -9715,7 +9751,7 @@
9715
9751
  "immutable": true,
9716
9752
  "locationInModule": {
9717
9753
  "filename": "src/projects/awscdk-app-options.generated.ts",
9718
- "line": 484
9754
+ "line": 490
9719
9755
  },
9720
9756
  "name": "releaseWorkflowEnv",
9721
9757
  "optional": true,
@@ -9738,7 +9774,7 @@
9738
9774
  "immutable": true,
9739
9775
  "locationInModule": {
9740
9776
  "filename": "src/projects/awscdk-app-options.generated.ts",
9741
- "line": 478
9777
+ "line": 484
9742
9778
  },
9743
9779
  "name": "releaseWorkflowName",
9744
9780
  "optional": true,
@@ -9755,7 +9791,7 @@
9755
9791
  "immutable": true,
9756
9792
  "locationInModule": {
9757
9793
  "filename": "src/projects/awscdk-app-options.generated.ts",
9758
- "line": 472
9794
+ "line": 478
9759
9795
  },
9760
9796
  "name": "releaseWorkflowSetupSteps",
9761
9797
  "optional": true,
@@ -9778,7 +9814,7 @@
9778
9814
  "immutable": true,
9779
9815
  "locationInModule": {
9780
9816
  "filename": "src/projects/awscdk-app-options.generated.ts",
9781
- "line": 1014
9817
+ "line": 1020
9782
9818
  },
9783
9819
  "name": "renovatebot",
9784
9820
  "optional": true,
@@ -9796,7 +9832,7 @@
9796
9832
  "immutable": true,
9797
9833
  "locationInModule": {
9798
9834
  "filename": "src/projects/awscdk-app-options.generated.ts",
9799
- "line": 1008
9835
+ "line": 1014
9800
9836
  },
9801
9837
  "name": "renovatebotOptions",
9802
9838
  "optional": true,
@@ -9814,7 +9850,7 @@
9814
9850
  "immutable": true,
9815
9851
  "locationInModule": {
9816
9852
  "filename": "src/projects/awscdk-app-options.generated.ts",
9817
- "line": 660
9853
+ "line": 666
9818
9854
  },
9819
9855
  "name": "repository",
9820
9856
  "optional": true,
@@ -9831,7 +9867,7 @@
9831
9867
  "immutable": true,
9832
9868
  "locationInModule": {
9833
9869
  "filename": "src/projects/awscdk-app-options.generated.ts",
9834
- "line": 654
9870
+ "line": 660
9835
9871
  },
9836
9872
  "name": "repositoryDirectory",
9837
9873
  "optional": true,
@@ -9867,7 +9903,7 @@
9867
9903
  "immutable": true,
9868
9904
  "locationInModule": {
9869
9905
  "filename": "src/projects/awscdk-app-options.generated.ts",
9870
- "line": 649
9906
+ "line": 655
9871
9907
  },
9872
9908
  "name": "scopedPackagesOptions",
9873
9909
  "optional": true,
@@ -9907,7 +9943,7 @@
9907
9943
  "immutable": true,
9908
9944
  "locationInModule": {
9909
9945
  "filename": "src/projects/awscdk-app-options.generated.ts",
9910
- "line": 643
9946
+ "line": 649
9911
9947
  },
9912
9948
  "name": "stability",
9913
9949
  "optional": true,
@@ -9926,7 +9962,7 @@
9926
9962
  "immutable": true,
9927
9963
  "locationInModule": {
9928
9964
  "filename": "src/projects/awscdk-app-options.generated.ts",
9929
- "line": 937
9965
+ "line": 943
9930
9966
  },
9931
9967
  "name": "stale",
9932
9968
  "optional": true,
@@ -9945,7 +9981,7 @@
9945
9981
  "immutable": true,
9946
9982
  "locationInModule": {
9947
9983
  "filename": "src/projects/awscdk-app-options.generated.ts",
9948
- "line": 930
9984
+ "line": 936
9949
9985
  },
9950
9986
  "name": "staleOptions",
9951
9987
  "optional": true,
@@ -10056,7 +10092,7 @@
10056
10092
  "immutable": true,
10057
10093
  "locationInModule": {
10058
10094
  "filename": "src/projects/awscdk-app-options.generated.ts",
10059
- "line": 467
10095
+ "line": 473
10060
10096
  },
10061
10097
  "name": "versionrcOptions",
10062
10098
  "optional": true,
@@ -10079,7 +10115,7 @@
10079
10115
  "immutable": true,
10080
10116
  "locationInModule": {
10081
10117
  "filename": "src/projects/awscdk-app-options.generated.ts",
10082
- "line": 1088
10118
+ "line": 1094
10083
10119
  },
10084
10120
  "name": "vitest",
10085
10121
  "optional": true,
@@ -10097,7 +10133,7 @@
10097
10133
  "immutable": true,
10098
10134
  "locationInModule": {
10099
10135
  "filename": "src/projects/awscdk-app-options.generated.ts",
10100
- "line": 1083
10136
+ "line": 1089
10101
10137
  },
10102
10138
  "name": "vitestOptions",
10103
10139
  "optional": true,
@@ -10116,7 +10152,7 @@
10116
10152
  "immutable": true,
10117
10153
  "locationInModule": {
10118
10154
  "filename": "src/projects/awscdk-app-options.generated.ts",
10119
- "line": 923
10155
+ "line": 929
10120
10156
  },
10121
10157
  "name": "vscode",
10122
10158
  "optional": true,
@@ -10203,7 +10239,7 @@
10203
10239
  "immutable": true,
10204
10240
  "locationInModule": {
10205
10241
  "filename": "src/projects/awscdk-app-options.generated.ts",
10206
- "line": 460
10242
+ "line": 466
10207
10243
  },
10208
10244
  "name": "workflowContainerImage",
10209
10245
  "optional": true,
@@ -10280,7 +10316,7 @@
10280
10316
  "immutable": true,
10281
10317
  "locationInModule": {
10282
10318
  "filename": "src/projects/awscdk-app-options.generated.ts",
10283
- "line": 454
10319
+ "line": 460
10284
10320
  },
10285
10321
  "name": "workflowRunsOn",
10286
10322
  "optional": true,
@@ -10306,7 +10342,7 @@
10306
10342
  "immutable": true,
10307
10343
  "locationInModule": {
10308
10344
  "filename": "src/projects/awscdk-app-options.generated.ts",
10309
- "line": 446
10345
+ "line": 452
10310
10346
  },
10311
10347
  "name": "workflowRunsOnGroup",
10312
10348
  "optional": true,
@@ -10324,7 +10360,7 @@
10324
10360
  "immutable": true,
10325
10361
  "locationInModule": {
10326
10362
  "filename": "src/projects/awscdk-app-options.generated.ts",
10327
- "line": 638
10363
+ "line": 644
10328
10364
  },
10329
10365
  "name": "yarnBerryOptions",
10330
10366
  "optional": true,
@@ -10540,7 +10576,7 @@
10540
10576
  "immutable": true,
10541
10577
  "locationInModule": {
10542
10578
  "filename": "src/projects/jsii-options.generated.ts",
10543
- "line": 402
10579
+ "line": 408
10544
10580
  },
10545
10581
  "name": "defaultReleaseBranch",
10546
10582
  "type": {
@@ -10560,7 +10596,7 @@
10560
10596
  "immutable": true,
10561
10597
  "locationInModule": {
10562
10598
  "filename": "src/projects/jsii-options.generated.ts",
10563
- "line": 1041
10599
+ "line": 1047
10564
10600
  },
10565
10601
  "name": "name",
10566
10602
  "type": {
@@ -10595,7 +10631,7 @@
10595
10631
  "immutable": true,
10596
10632
  "locationInModule": {
10597
10633
  "filename": "src/projects/jsii-options.generated.ts",
10598
- "line": 879
10634
+ "line": 885
10599
10635
  },
10600
10636
  "name": "allowLibraryDependencies",
10601
10637
  "optional": true,
@@ -10613,7 +10649,7 @@
10613
10649
  "immutable": true,
10614
10650
  "locationInModule": {
10615
10651
  "filename": "src/projects/jsii-options.generated.ts",
10616
- "line": 396
10652
+ "line": 402
10617
10653
  },
10618
10654
  "name": "artifactsDirectory",
10619
10655
  "optional": true,
@@ -10632,7 +10668,7 @@
10632
10668
  "immutable": true,
10633
10669
  "locationInModule": {
10634
10670
  "filename": "src/projects/jsii-options.generated.ts",
10635
- "line": 390
10671
+ "line": 396
10636
10672
  },
10637
10673
  "name": "auditDeps",
10638
10674
  "optional": true,
@@ -10650,7 +10686,7 @@
10650
10686
  "immutable": true,
10651
10687
  "locationInModule": {
10652
10688
  "filename": "src/projects/jsii-options.generated.ts",
10653
- "line": 381
10689
+ "line": 387
10654
10690
  },
10655
10691
  "name": "auditDepsOptions",
10656
10692
  "optional": true,
@@ -10667,7 +10703,7 @@
10667
10703
  "immutable": true,
10668
10704
  "locationInModule": {
10669
10705
  "filename": "src/projects/jsii-options.generated.ts",
10670
- "line": 871
10706
+ "line": 877
10671
10707
  },
10672
10708
  "name": "authorEmail",
10673
10709
  "optional": true,
@@ -10684,7 +10720,7 @@
10684
10720
  "immutable": true,
10685
10721
  "locationInModule": {
10686
10722
  "filename": "src/projects/jsii-options.generated.ts",
10687
- "line": 866
10723
+ "line": 872
10688
10724
  },
10689
10725
  "name": "authorName",
10690
10726
  "optional": true,
@@ -10701,7 +10737,7 @@
10701
10737
  "immutable": true,
10702
10738
  "locationInModule": {
10703
10739
  "filename": "src/projects/jsii-options.generated.ts",
10704
- "line": 861
10740
+ "line": 867
10705
10741
  },
10706
10742
  "name": "authorOrganization",
10707
10743
  "optional": true,
@@ -10718,7 +10754,7 @@
10718
10754
  "immutable": true,
10719
10755
  "locationInModule": {
10720
10756
  "filename": "src/projects/jsii-options.generated.ts",
10721
- "line": 856
10757
+ "line": 862
10722
10758
  },
10723
10759
  "name": "authorUrl",
10724
10760
  "optional": true,
@@ -10736,7 +10772,7 @@
10736
10772
  "immutable": true,
10737
10773
  "locationInModule": {
10738
10774
  "filename": "src/projects/jsii-options.generated.ts",
10739
- "line": 965
10775
+ "line": 971
10740
10776
  },
10741
10777
  "name": "autoApproveOptions",
10742
10778
  "optional": true,
@@ -10755,7 +10791,7 @@
10755
10791
  "immutable": true,
10756
10792
  "locationInModule": {
10757
10793
  "filename": "src/projects/jsii-options.generated.ts",
10758
- "line": 375
10794
+ "line": 381
10759
10795
  },
10760
10796
  "name": "autoApproveUpgrades",
10761
10797
  "optional": true,
@@ -10773,7 +10809,7 @@
10773
10809
  "immutable": true,
10774
10810
  "locationInModule": {
10775
10811
  "filename": "src/projects/jsii-options.generated.ts",
10776
- "line": 851
10812
+ "line": 857
10777
10813
  },
10778
10814
  "name": "autoDetectBin",
10779
10815
  "optional": true,
@@ -10792,7 +10828,7 @@
10792
10828
  "immutable": true,
10793
10829
  "locationInModule": {
10794
10830
  "filename": "src/projects/jsii-options.generated.ts",
10795
- "line": 959
10831
+ "line": 965
10796
10832
  },
10797
10833
  "name": "autoMerge",
10798
10834
  "optional": true,
@@ -10811,7 +10847,7 @@
10811
10847
  "immutable": true,
10812
10848
  "locationInModule": {
10813
10849
  "filename": "src/projects/jsii-options.generated.ts",
10814
- "line": 951
10850
+ "line": 957
10815
10851
  },
10816
10852
  "name": "autoMergeOptions",
10817
10853
  "optional": true,
@@ -10829,7 +10865,7 @@
10829
10865
  "immutable": true,
10830
10866
  "locationInModule": {
10831
10867
  "filename": "src/projects/jsii-options.generated.ts",
10832
- "line": 845
10868
+ "line": 851
10833
10869
  },
10834
10870
  "name": "bin",
10835
10871
  "optional": true,
@@ -10842,6 +10878,24 @@
10842
10878
  }
10843
10879
  }
10844
10880
  },
10881
+ {
10882
+ "abstract": true,
10883
+ "docs": {
10884
+ "default": "false",
10885
+ "stability": "experimental",
10886
+ "summary": "Setup Biome."
10887
+ },
10888
+ "immutable": true,
10889
+ "locationInModule": {
10890
+ "filename": "src/projects/jsii-options.generated.ts",
10891
+ "line": 374
10892
+ },
10893
+ "name": "biome",
10894
+ "optional": true,
10895
+ "type": {
10896
+ "primitive": "boolean"
10897
+ }
10898
+ },
10845
10899
  {
10846
10900
  "abstract": true,
10847
10901
  "docs": {
@@ -10869,7 +10923,7 @@
10869
10923
  "immutable": true,
10870
10924
  "locationInModule": {
10871
10925
  "filename": "src/projects/jsii-options.generated.ts",
10872
- "line": 837
10926
+ "line": 843
10873
10927
  },
10874
10928
  "name": "bugsEmail",
10875
10929
  "optional": true,
@@ -10886,7 +10940,7 @@
10886
10940
  "immutable": true,
10887
10941
  "locationInModule": {
10888
10942
  "filename": "src/projects/jsii-options.generated.ts",
10889
- "line": 832
10943
+ "line": 838
10890
10944
  },
10891
10945
  "name": "bugsUrl",
10892
10946
  "optional": true,
@@ -10940,7 +10994,7 @@
10940
10994
  "immutable": true,
10941
10995
  "locationInModule": {
10942
10996
  "filename": "src/projects/jsii-options.generated.ts",
10943
- "line": 595
10997
+ "line": 601
10944
10998
  },
10945
10999
  "name": "bumpPackage",
10946
11000
  "optional": true,
@@ -10958,7 +11012,7 @@
10958
11012
  "immutable": true,
10959
11013
  "locationInModule": {
10960
11014
  "filename": "src/projects/jsii-options.generated.ts",
10961
- "line": 827
11015
+ "line": 833
10962
11016
  },
10963
11017
  "name": "bundledDeps",
10964
11018
  "optional": true,
@@ -10998,7 +11052,7 @@
10998
11052
  "immutable": true,
10999
11053
  "locationInModule": {
11000
11054
  "filename": "src/projects/jsii-options.generated.ts",
11001
- "line": 812
11055
+ "line": 818
11002
11056
  },
11003
11057
  "name": "bunVersion",
11004
11058
  "optional": true,
@@ -11035,7 +11089,7 @@
11035
11089
  "immutable": true,
11036
11090
  "locationInModule": {
11037
11091
  "filename": "src/projects/jsii-options.generated.ts",
11038
- "line": 943
11092
+ "line": 949
11039
11093
  },
11040
11094
  "name": "clobber",
11041
11095
  "optional": true,
@@ -11054,7 +11108,7 @@
11054
11108
  "immutable": true,
11055
11109
  "locationInModule": {
11056
11110
  "filename": "src/projects/jsii-options.generated.ts",
11057
- "line": 806
11111
+ "line": 812
11058
11112
  },
11059
11113
  "name": "codeArtifactOptions",
11060
11114
  "optional": true,
@@ -11108,7 +11162,7 @@
11108
11162
  "immutable": true,
11109
11163
  "locationInModule": {
11110
11164
  "filename": "src/projects/jsii-options.generated.ts",
11111
- "line": 1034
11165
+ "line": 1040
11112
11166
  },
11113
11167
  "name": "commitGenerated",
11114
11168
  "optional": true,
@@ -11258,7 +11312,7 @@
11258
11312
  "immutable": true,
11259
11313
  "locationInModule": {
11260
11314
  "filename": "src/projects/jsii-options.generated.ts",
11261
- "line": 799
11315
+ "line": 805
11262
11316
  },
11263
11317
  "name": "deps",
11264
11318
  "optional": true,
@@ -11321,7 +11375,7 @@
11321
11375
  "immutable": true,
11322
11376
  "locationInModule": {
11323
11377
  "filename": "src/projects/jsii-options.generated.ts",
11324
- "line": 786
11378
+ "line": 792
11325
11379
  },
11326
11380
  "name": "description",
11327
11381
  "optional": true,
@@ -11339,7 +11393,7 @@
11339
11393
  "immutable": true,
11340
11394
  "locationInModule": {
11341
11395
  "filename": "src/projects/jsii-options.generated.ts",
11342
- "line": 937
11396
+ "line": 943
11343
11397
  },
11344
11398
  "name": "devContainer",
11345
11399
  "optional": true,
@@ -11361,7 +11415,7 @@
11361
11415
  "immutable": true,
11362
11416
  "locationInModule": {
11363
11417
  "filename": "src/projects/jsii-options.generated.ts",
11364
- "line": 778
11418
+ "line": 784
11365
11419
  },
11366
11420
  "name": "devDeps",
11367
11421
  "optional": true,
@@ -11474,7 +11528,7 @@
11474
11528
  "immutable": true,
11475
11529
  "locationInModule": {
11476
11530
  "filename": "src/projects/jsii-options.generated.ts",
11477
- "line": 761
11531
+ "line": 767
11478
11532
  },
11479
11533
  "name": "entrypoint",
11480
11534
  "optional": true,
@@ -11534,7 +11588,7 @@
11534
11588
  "immutable": true,
11535
11589
  "locationInModule": {
11536
11590
  "filename": "src/projects/jsii-options.generated.ts",
11537
- "line": 931
11591
+ "line": 937
11538
11592
  },
11539
11593
  "name": "github",
11540
11594
  "optional": true,
@@ -11552,7 +11606,7 @@
11552
11606
  "immutable": true,
11553
11607
  "locationInModule": {
11554
11608
  "filename": "src/projects/jsii-options.generated.ts",
11555
- "line": 924
11609
+ "line": 930
11556
11610
  },
11557
11611
  "name": "githubOptions",
11558
11612
  "optional": true,
@@ -11591,7 +11645,7 @@
11591
11645
  "immutable": true,
11592
11646
  "locationInModule": {
11593
11647
  "filename": "src/projects/jsii-options.generated.ts",
11594
- "line": 1028
11648
+ "line": 1034
11595
11649
  },
11596
11650
  "name": "gitIgnoreOptions",
11597
11651
  "optional": true,
@@ -11608,7 +11662,7 @@
11608
11662
  "immutable": true,
11609
11663
  "locationInModule": {
11610
11664
  "filename": "src/projects/jsii-options.generated.ts",
11611
- "line": 1023
11665
+ "line": 1029
11612
11666
  },
11613
11667
  "name": "gitOptions",
11614
11668
  "optional": true,
@@ -11626,7 +11680,7 @@
11626
11680
  "immutable": true,
11627
11681
  "locationInModule": {
11628
11682
  "filename": "src/projects/jsii-options.generated.ts",
11629
- "line": 918
11683
+ "line": 924
11630
11684
  },
11631
11685
  "name": "gitpod",
11632
11686
  "optional": true,
@@ -11643,7 +11697,7 @@
11643
11697
  "immutable": true,
11644
11698
  "locationInModule": {
11645
11699
  "filename": "src/projects/jsii-options.generated.ts",
11646
- "line": 754
11700
+ "line": 760
11647
11701
  },
11648
11702
  "name": "homepage",
11649
11703
  "optional": true,
@@ -11661,7 +11715,7 @@
11661
11715
  "immutable": true,
11662
11716
  "locationInModule": {
11663
11717
  "filename": "src/projects/jsii-options.generated.ts",
11664
- "line": 588
11718
+ "line": 594
11665
11719
  },
11666
11720
  "name": "jsiiReleaseVersion",
11667
11721
  "optional": true,
@@ -11700,7 +11754,7 @@
11700
11754
  "immutable": true,
11701
11755
  "locationInModule": {
11702
11756
  "filename": "src/projects/jsii-options.generated.ts",
11703
- "line": 749
11757
+ "line": 755
11704
11758
  },
11705
11759
  "name": "keywords",
11706
11760
  "optional": true,
@@ -11742,7 +11796,7 @@
11742
11796
  "immutable": true,
11743
11797
  "locationInModule": {
11744
11798
  "filename": "src/projects/jsii-options.generated.ts",
11745
- "line": 744
11799
+ "line": 750
11746
11800
  },
11747
11801
  "name": "license",
11748
11802
  "optional": true,
@@ -11760,7 +11814,7 @@
11760
11814
  "immutable": true,
11761
11815
  "locationInModule": {
11762
11816
  "filename": "src/projects/jsii-options.generated.ts",
11763
- "line": 736
11817
+ "line": 742
11764
11818
  },
11765
11819
  "name": "licensed",
11766
11820
  "optional": true,
@@ -11778,7 +11832,7 @@
11778
11832
  "immutable": true,
11779
11833
  "locationInModule": {
11780
11834
  "filename": "src/projects/jsii-options.generated.ts",
11781
- "line": 1018
11835
+ "line": 1024
11782
11836
  },
11783
11837
  "name": "logging",
11784
11838
  "optional": true,
@@ -11797,7 +11851,7 @@
11797
11851
  "immutable": true,
11798
11852
  "locationInModule": {
11799
11853
  "filename": "src/projects/jsii-options.generated.ts",
11800
- "line": 582
11854
+ "line": 588
11801
11855
  },
11802
11856
  "name": "majorVersion",
11803
11857
  "optional": true,
@@ -11816,7 +11870,7 @@
11816
11870
  "immutable": true,
11817
11871
  "locationInModule": {
11818
11872
  "filename": "src/projects/jsii-options.generated.ts",
11819
- "line": 730
11873
+ "line": 736
11820
11874
  },
11821
11875
  "name": "maxNodeVersion",
11822
11876
  "optional": true,
@@ -11835,7 +11889,7 @@
11835
11889
  "immutable": true,
11836
11890
  "locationInModule": {
11837
11891
  "filename": "src/projects/jsii-options.generated.ts",
11838
- "line": 574
11892
+ "line": 580
11839
11893
  },
11840
11894
  "name": "minMajorVersion",
11841
11895
  "optional": true,
@@ -11854,7 +11908,7 @@
11854
11908
  "immutable": true,
11855
11909
  "locationInModule": {
11856
11910
  "filename": "src/projects/jsii-options.generated.ts",
11857
- "line": 719
11911
+ "line": 725
11858
11912
  },
11859
11913
  "name": "minNodeVersion",
11860
11914
  "optional": true,
@@ -11872,7 +11926,7 @@
11872
11926
  "immutable": true,
11873
11927
  "locationInModule": {
11874
11928
  "filename": "src/projects/jsii-options.generated.ts",
11875
- "line": 1056
11929
+ "line": 1062
11876
11930
  },
11877
11931
  "name": "mise",
11878
11932
  "optional": true,
@@ -11891,7 +11945,7 @@
11891
11945
  "immutable": true,
11892
11946
  "locationInModule": {
11893
11947
  "filename": "src/projects/jsii-options.generated.ts",
11894
- "line": 564
11948
+ "line": 570
11895
11949
  },
11896
11950
  "name": "nextVersionCommand",
11897
11951
  "optional": true,
@@ -11909,7 +11963,7 @@
11909
11963
  "immutable": true,
11910
11964
  "locationInModule": {
11911
11965
  "filename": "src/projects/jsii-options.generated.ts",
11912
- "line": 704
11966
+ "line": 710
11913
11967
  },
11914
11968
  "name": "npmAccess",
11915
11969
  "optional": true,
@@ -11928,7 +11982,7 @@
11928
11982
  "immutable": true,
11929
11983
  "locationInModule": {
11930
11984
  "filename": "src/projects/jsii-options.generated.ts",
11931
- "line": 540
11985
+ "line": 546
11932
11986
  },
11933
11987
  "name": "npmDistTag",
11934
11988
  "optional": true,
@@ -11982,7 +12036,7 @@
11982
12036
  "immutable": true,
11983
12037
  "locationInModule": {
11984
12038
  "filename": "src/projects/jsii-options.generated.ts",
11985
- "line": 696
12039
+ "line": 702
11986
12040
  },
11987
12041
  "name": "npmProvenance",
11988
12042
  "optional": true,
@@ -12001,7 +12055,7 @@
12001
12055
  "immutable": true,
12002
12056
  "locationInModule": {
12003
12057
  "filename": "src/projects/jsii-options.generated.ts",
12004
- "line": 685
12058
+ "line": 691
12005
12059
  },
12006
12060
  "name": "npmRegistryUrl",
12007
12061
  "optional": true,
@@ -12019,7 +12073,7 @@
12019
12073
  "immutable": true,
12020
12074
  "locationInModule": {
12021
12075
  "filename": "src/projects/jsii-options.generated.ts",
12022
- "line": 678
12076
+ "line": 684
12023
12077
  },
12024
12078
  "name": "npmTokenSecret",
12025
12079
  "optional": true,
@@ -12037,7 +12091,7 @@
12037
12091
  "immutable": true,
12038
12092
  "locationInModule": {
12039
12093
  "filename": "src/projects/jsii-options.generated.ts",
12040
- "line": 672
12094
+ "line": 678
12041
12095
  },
12042
12096
  "name": "npmTrustedPublishing",
12043
12097
  "optional": true,
@@ -12056,7 +12110,7 @@
12056
12110
  "immutable": true,
12057
12111
  "locationInModule": {
12058
12112
  "filename": "src/projects/jsii-options.generated.ts",
12059
- "line": 1012
12113
+ "line": 1018
12060
12114
  },
12061
12115
  "name": "outdir",
12062
12116
  "optional": true,
@@ -12092,7 +12146,7 @@
12092
12146
  "immutable": true,
12093
12147
  "locationInModule": {
12094
12148
  "filename": "src/projects/jsii-options.generated.ts",
12095
- "line": 666
12149
+ "line": 672
12096
12150
  },
12097
12151
  "name": "packageManager",
12098
12152
  "optional": true,
@@ -12113,7 +12167,7 @@
12113
12167
  "immutable": true,
12114
12168
  "locationInModule": {
12115
12169
  "filename": "src/projects/jsii-options.generated.ts",
12116
- "line": 660
12170
+ "line": 666
12117
12171
  },
12118
12172
  "name": "packageName",
12119
12173
  "optional": true,
@@ -12130,7 +12184,7 @@
12130
12184
  "immutable": true,
12131
12185
  "locationInModule": {
12132
12186
  "filename": "src/projects/jsii-options.generated.ts",
12133
- "line": 1001
12187
+ "line": 1007
12134
12188
  },
12135
12189
  "name": "parent",
12136
12190
  "optional": true,
@@ -12147,7 +12201,7 @@
12147
12201
  "immutable": true,
12148
12202
  "locationInModule": {
12149
12203
  "filename": "src/projects/jsii-options.generated.ts",
12150
- "line": 653
12204
+ "line": 659
12151
12205
  },
12152
12206
  "name": "peerDependencyOptions",
12153
12207
  "optional": true,
@@ -12166,7 +12220,7 @@
12166
12220
  "immutable": true,
12167
12221
  "locationInModule": {
12168
12222
  "filename": "src/projects/jsii-options.generated.ts",
12169
- "line": 648
12223
+ "line": 654
12170
12224
  },
12171
12225
  "name": "peerDeps",
12172
12226
  "optional": true,
@@ -12189,7 +12243,7 @@
12189
12243
  "immutable": true,
12190
12244
  "locationInModule": {
12191
12245
  "filename": "src/projects/jsii-options.generated.ts",
12192
- "line": 629
12246
+ "line": 635
12193
12247
  },
12194
12248
  "name": "pnpmVersion",
12195
12249
  "optional": true,
@@ -12207,7 +12261,7 @@
12207
12261
  "immutable": true,
12208
12262
  "locationInModule": {
12209
12263
  "filename": "src/projects/jsii-options.generated.ts",
12210
- "line": 532
12264
+ "line": 538
12211
12265
  },
12212
12266
  "name": "postBuildSteps",
12213
12267
  "optional": true,
@@ -12230,7 +12284,7 @@
12230
12284
  "immutable": true,
12231
12285
  "locationInModule": {
12232
12286
  "filename": "src/projects/jsii-options.generated.ts",
12233
- "line": 526
12287
+ "line": 532
12234
12288
  },
12235
12289
  "name": "prerelease",
12236
12290
  "optional": true,
@@ -12249,7 +12303,7 @@
12249
12303
  "immutable": true,
12250
12304
  "locationInModule": {
12251
12305
  "filename": "src/projects/jsii-options.generated.ts",
12252
- "line": 996
12306
+ "line": 1002
12253
12307
  },
12254
12308
  "name": "projenCommand",
12255
12309
  "optional": true,
@@ -12267,7 +12321,7 @@
12267
12321
  "immutable": true,
12268
12322
  "locationInModule": {
12269
12323
  "filename": "src/projects/jsii-options.generated.ts",
12270
- "line": 912
12324
+ "line": 918
12271
12325
  },
12272
12326
  "name": "projenCredentials",
12273
12327
  "optional": true,
@@ -12321,7 +12375,7 @@
12321
12375
  "immutable": true,
12322
12376
  "locationInModule": {
12323
12377
  "filename": "src/projects/jsii-options.generated.ts",
12324
- "line": 989
12378
+ "line": 995
12325
12379
  },
12326
12380
  "name": "projenrcJson",
12327
12381
  "optional": true,
@@ -12339,7 +12393,7 @@
12339
12393
  "immutable": true,
12340
12394
  "locationInModule": {
12341
12395
  "filename": "src/projects/jsii-options.generated.ts",
12342
- "line": 983
12396
+ "line": 989
12343
12397
  },
12344
12398
  "name": "projenrcJsonOptions",
12345
12399
  "optional": true,
@@ -12431,7 +12485,7 @@
12431
12485
  "immutable": true,
12432
12486
  "locationInModule": {
12433
12487
  "filename": "src/projects/jsii-options.generated.ts",
12434
- "line": 520
12488
+ "line": 526
12435
12489
  },
12436
12490
  "name": "publishDryRun",
12437
12491
  "optional": true,
@@ -12450,7 +12504,7 @@
12450
12504
  "immutable": true,
12451
12505
  "locationInModule": {
12452
12506
  "filename": "src/projects/jsii-options.generated.ts",
12453
- "line": 514
12507
+ "line": 520
12454
12508
  },
12455
12509
  "name": "publishTasks",
12456
12510
  "optional": true,
@@ -12581,7 +12635,7 @@
12581
12635
  "immutable": true,
12582
12636
  "locationInModule": {
12583
12637
  "filename": "src/projects/jsii-options.generated.ts",
12584
- "line": 906
12638
+ "line": 912
12585
12639
  },
12586
12640
  "name": "readme",
12587
12641
  "optional": true,
@@ -12599,7 +12653,7 @@
12599
12653
  "immutable": true,
12600
12654
  "locationInModule": {
12601
12655
  "filename": "src/projects/jsii-options.generated.ts",
12602
- "line": 506
12656
+ "line": 512
12603
12657
  },
12604
12658
  "name": "releasableCommits",
12605
12659
  "optional": true,
@@ -12636,7 +12690,7 @@
12636
12690
  "immutable": true,
12637
12691
  "locationInModule": {
12638
12692
  "filename": "src/projects/jsii-options.generated.ts",
12639
- "line": 500
12693
+ "line": 506
12640
12694
  },
12641
12695
  "name": "releaseBranches",
12642
12696
  "optional": true,
@@ -12660,7 +12714,7 @@
12660
12714
  "immutable": true,
12661
12715
  "locationInModule": {
12662
12716
  "filename": "src/projects/jsii-options.generated.ts",
12663
- "line": 487
12717
+ "line": 493
12664
12718
  },
12665
12719
  "name": "releaseEnvironment",
12666
12720
  "optional": true,
@@ -12678,7 +12732,7 @@
12678
12732
  "immutable": true,
12679
12733
  "locationInModule": {
12680
12734
  "filename": "src/projects/jsii-options.generated.ts",
12681
- "line": 476
12735
+ "line": 482
12682
12736
  },
12683
12737
  "name": "releaseFailureIssue",
12684
12738
  "optional": true,
@@ -12697,7 +12751,7 @@
12697
12751
  "immutable": true,
12698
12752
  "locationInModule": {
12699
12753
  "filename": "src/projects/jsii-options.generated.ts",
12700
- "line": 470
12754
+ "line": 476
12701
12755
  },
12702
12756
  "name": "releaseFailureIssueLabel",
12703
12757
  "optional": true,
@@ -12716,7 +12770,7 @@
12716
12770
  "immutable": true,
12717
12771
  "locationInModule": {
12718
12772
  "filename": "src/projects/jsii-options.generated.ts",
12719
- "line": 463
12773
+ "line": 469
12720
12774
  },
12721
12775
  "name": "releaseTagPrefix",
12722
12776
  "optional": true,
@@ -12752,7 +12806,7 @@
12752
12806
  "immutable": true,
12753
12807
  "locationInModule": {
12754
12808
  "filename": "src/projects/jsii-options.generated.ts",
12755
- "line": 453
12809
+ "line": 459
12756
12810
  },
12757
12811
  "name": "releaseTrigger",
12758
12812
  "optional": true,
@@ -12770,7 +12824,7 @@
12770
12824
  "immutable": true,
12771
12825
  "locationInModule": {
12772
12826
  "filename": "src/projects/jsii-options.generated.ts",
12773
- "line": 447
12827
+ "line": 453
12774
12828
  },
12775
12829
  "name": "releaseWorkflowEnv",
12776
12830
  "optional": true,
@@ -12793,7 +12847,7 @@
12793
12847
  "immutable": true,
12794
12848
  "locationInModule": {
12795
12849
  "filename": "src/projects/jsii-options.generated.ts",
12796
- "line": 441
12850
+ "line": 447
12797
12851
  },
12798
12852
  "name": "releaseWorkflowName",
12799
12853
  "optional": true,
@@ -12810,7 +12864,7 @@
12810
12864
  "immutable": true,
12811
12865
  "locationInModule": {
12812
12866
  "filename": "src/projects/jsii-options.generated.ts",
12813
- "line": 435
12867
+ "line": 441
12814
12868
  },
12815
12869
  "name": "releaseWorkflowSetupSteps",
12816
12870
  "optional": true,
@@ -12833,7 +12887,7 @@
12833
12887
  "immutable": true,
12834
12888
  "locationInModule": {
12835
12889
  "filename": "src/projects/jsii-options.generated.ts",
12836
- "line": 977
12890
+ "line": 983
12837
12891
  },
12838
12892
  "name": "renovatebot",
12839
12893
  "optional": true,
@@ -12851,7 +12905,7 @@
12851
12905
  "immutable": true,
12852
12906
  "locationInModule": {
12853
12907
  "filename": "src/projects/jsii-options.generated.ts",
12854
- "line": 971
12908
+ "line": 977
12855
12909
  },
12856
12910
  "name": "renovatebotOptions",
12857
12911
  "optional": true,
@@ -12869,7 +12923,7 @@
12869
12923
  "immutable": true,
12870
12924
  "locationInModule": {
12871
12925
  "filename": "src/projects/jsii-options.generated.ts",
12872
- "line": 623
12926
+ "line": 629
12873
12927
  },
12874
12928
  "name": "repository",
12875
12929
  "optional": true,
@@ -12886,7 +12940,7 @@
12886
12940
  "immutable": true,
12887
12941
  "locationInModule": {
12888
12942
  "filename": "src/projects/jsii-options.generated.ts",
12889
- "line": 617
12943
+ "line": 623
12890
12944
  },
12891
12945
  "name": "repositoryDirectory",
12892
12946
  "optional": true,
@@ -12921,7 +12975,7 @@
12921
12975
  "immutable": true,
12922
12976
  "locationInModule": {
12923
12977
  "filename": "src/projects/jsii-options.generated.ts",
12924
- "line": 612
12978
+ "line": 618
12925
12979
  },
12926
12980
  "name": "scopedPackagesOptions",
12927
12981
  "optional": true,
@@ -12961,7 +13015,7 @@
12961
13015
  "immutable": true,
12962
13016
  "locationInModule": {
12963
13017
  "filename": "src/projects/jsii-options.generated.ts",
12964
- "line": 606
13018
+ "line": 612
12965
13019
  },
12966
13020
  "name": "stability",
12967
13021
  "optional": true,
@@ -12980,7 +13034,7 @@
12980
13034
  "immutable": true,
12981
13035
  "locationInModule": {
12982
13036
  "filename": "src/projects/jsii-options.generated.ts",
12983
- "line": 900
13037
+ "line": 906
12984
13038
  },
12985
13039
  "name": "stale",
12986
13040
  "optional": true,
@@ -12999,7 +13053,7 @@
12999
13053
  "immutable": true,
13000
13054
  "locationInModule": {
13001
13055
  "filename": "src/projects/jsii-options.generated.ts",
13002
- "line": 893
13056
+ "line": 899
13003
13057
  },
13004
13058
  "name": "staleOptions",
13005
13059
  "optional": true,
@@ -13110,7 +13164,7 @@
13110
13164
  "immutable": true,
13111
13165
  "locationInModule": {
13112
13166
  "filename": "src/projects/jsii-options.generated.ts",
13113
- "line": 430
13167
+ "line": 436
13114
13168
  },
13115
13169
  "name": "versionrcOptions",
13116
13170
  "optional": true,
@@ -13133,7 +13187,7 @@
13133
13187
  "immutable": true,
13134
13188
  "locationInModule": {
13135
13189
  "filename": "src/projects/jsii-options.generated.ts",
13136
- "line": 1051
13190
+ "line": 1057
13137
13191
  },
13138
13192
  "name": "vitest",
13139
13193
  "optional": true,
@@ -13151,7 +13205,7 @@
13151
13205
  "immutable": true,
13152
13206
  "locationInModule": {
13153
13207
  "filename": "src/projects/jsii-options.generated.ts",
13154
- "line": 1046
13208
+ "line": 1052
13155
13209
  },
13156
13210
  "name": "vitestOptions",
13157
13211
  "optional": true,
@@ -13170,7 +13224,7 @@
13170
13224
  "immutable": true,
13171
13225
  "locationInModule": {
13172
13226
  "filename": "src/projects/jsii-options.generated.ts",
13173
- "line": 886
13227
+ "line": 892
13174
13228
  },
13175
13229
  "name": "vscode",
13176
13230
  "optional": true,
@@ -13211,7 +13265,7 @@
13211
13265
  "immutable": true,
13212
13266
  "locationInModule": {
13213
13267
  "filename": "src/projects/jsii-options.generated.ts",
13214
- "line": 423
13268
+ "line": 429
13215
13269
  },
13216
13270
  "name": "workflowContainerImage",
13217
13271
  "optional": true,
@@ -13288,7 +13342,7 @@
13288
13342
  "immutable": true,
13289
13343
  "locationInModule": {
13290
13344
  "filename": "src/projects/jsii-options.generated.ts",
13291
- "line": 417
13345
+ "line": 423
13292
13346
  },
13293
13347
  "name": "workflowRunsOn",
13294
13348
  "optional": true,
@@ -13314,7 +13368,7 @@
13314
13368
  "immutable": true,
13315
13369
  "locationInModule": {
13316
13370
  "filename": "src/projects/jsii-options.generated.ts",
13317
- "line": 409
13371
+ "line": 415
13318
13372
  },
13319
13373
  "name": "workflowRunsOnGroup",
13320
13374
  "optional": true,
@@ -13332,7 +13386,7 @@
13332
13386
  "immutable": true,
13333
13387
  "locationInModule": {
13334
13388
  "filename": "src/projects/jsii-options.generated.ts",
13335
- "line": 601
13389
+ "line": 607
13336
13390
  },
13337
13391
  "name": "yarnBerryOptions",
13338
13392
  "optional": true,
@@ -13440,7 +13494,7 @@
13440
13494
  "immutable": true,
13441
13495
  "locationInModule": {
13442
13496
  "filename": "src/projects/typescript-options.generated.ts",
13443
- "line": 306
13497
+ "line": 312
13444
13498
  },
13445
13499
  "name": "defaultReleaseBranch",
13446
13500
  "type": {
@@ -13460,7 +13514,7 @@
13460
13514
  "immutable": true,
13461
13515
  "locationInModule": {
13462
13516
  "filename": "src/projects/typescript-options.generated.ts",
13463
- "line": 945
13517
+ "line": 951
13464
13518
  },
13465
13519
  "name": "name",
13466
13520
  "type": {
@@ -13478,7 +13532,7 @@
13478
13532
  "immutable": true,
13479
13533
  "locationInModule": {
13480
13534
  "filename": "src/projects/typescript-options.generated.ts",
13481
- "line": 783
13535
+ "line": 789
13482
13536
  },
13483
13537
  "name": "allowLibraryDependencies",
13484
13538
  "optional": true,
@@ -13496,7 +13550,7 @@
13496
13550
  "immutable": true,
13497
13551
  "locationInModule": {
13498
13552
  "filename": "src/projects/typescript-options.generated.ts",
13499
- "line": 300
13553
+ "line": 306
13500
13554
  },
13501
13555
  "name": "artifactsDirectory",
13502
13556
  "optional": true,
@@ -13515,7 +13569,7 @@
13515
13569
  "immutable": true,
13516
13570
  "locationInModule": {
13517
13571
  "filename": "src/projects/typescript-options.generated.ts",
13518
- "line": 294
13572
+ "line": 300
13519
13573
  },
13520
13574
  "name": "auditDeps",
13521
13575
  "optional": true,
@@ -13533,7 +13587,7 @@
13533
13587
  "immutable": true,
13534
13588
  "locationInModule": {
13535
13589
  "filename": "src/projects/typescript-options.generated.ts",
13536
- "line": 285
13590
+ "line": 291
13537
13591
  },
13538
13592
  "name": "auditDepsOptions",
13539
13593
  "optional": true,
@@ -13550,7 +13604,7 @@
13550
13604
  "immutable": true,
13551
13605
  "locationInModule": {
13552
13606
  "filename": "src/projects/typescript-options.generated.ts",
13553
- "line": 775
13607
+ "line": 781
13554
13608
  },
13555
13609
  "name": "authorEmail",
13556
13610
  "optional": true,
@@ -13567,7 +13621,7 @@
13567
13621
  "immutable": true,
13568
13622
  "locationInModule": {
13569
13623
  "filename": "src/projects/typescript-options.generated.ts",
13570
- "line": 770
13624
+ "line": 776
13571
13625
  },
13572
13626
  "name": "authorName",
13573
13627
  "optional": true,
@@ -13584,7 +13638,7 @@
13584
13638
  "immutable": true,
13585
13639
  "locationInModule": {
13586
13640
  "filename": "src/projects/typescript-options.generated.ts",
13587
- "line": 765
13641
+ "line": 771
13588
13642
  },
13589
13643
  "name": "authorOrganization",
13590
13644
  "optional": true,
@@ -13601,7 +13655,7 @@
13601
13655
  "immutable": true,
13602
13656
  "locationInModule": {
13603
13657
  "filename": "src/projects/typescript-options.generated.ts",
13604
- "line": 760
13658
+ "line": 766
13605
13659
  },
13606
13660
  "name": "authorUrl",
13607
13661
  "optional": true,
@@ -13619,7 +13673,7 @@
13619
13673
  "immutable": true,
13620
13674
  "locationInModule": {
13621
13675
  "filename": "src/projects/typescript-options.generated.ts",
13622
- "line": 869
13676
+ "line": 875
13623
13677
  },
13624
13678
  "name": "autoApproveOptions",
13625
13679
  "optional": true,
@@ -13638,7 +13692,7 @@
13638
13692
  "immutable": true,
13639
13693
  "locationInModule": {
13640
13694
  "filename": "src/projects/typescript-options.generated.ts",
13641
- "line": 279
13695
+ "line": 285
13642
13696
  },
13643
13697
  "name": "autoApproveUpgrades",
13644
13698
  "optional": true,
@@ -13656,7 +13710,7 @@
13656
13710
  "immutable": true,
13657
13711
  "locationInModule": {
13658
13712
  "filename": "src/projects/typescript-options.generated.ts",
13659
- "line": 755
13713
+ "line": 761
13660
13714
  },
13661
13715
  "name": "autoDetectBin",
13662
13716
  "optional": true,
@@ -13675,7 +13729,7 @@
13675
13729
  "immutable": true,
13676
13730
  "locationInModule": {
13677
13731
  "filename": "src/projects/typescript-options.generated.ts",
13678
- "line": 863
13732
+ "line": 869
13679
13733
  },
13680
13734
  "name": "autoMerge",
13681
13735
  "optional": true,
@@ -13694,7 +13748,7 @@
13694
13748
  "immutable": true,
13695
13749
  "locationInModule": {
13696
13750
  "filename": "src/projects/typescript-options.generated.ts",
13697
- "line": 855
13751
+ "line": 861
13698
13752
  },
13699
13753
  "name": "autoMergeOptions",
13700
13754
  "optional": true,
@@ -13712,7 +13766,7 @@
13712
13766
  "immutable": true,
13713
13767
  "locationInModule": {
13714
13768
  "filename": "src/projects/typescript-options.generated.ts",
13715
- "line": 749
13769
+ "line": 755
13716
13770
  },
13717
13771
  "name": "bin",
13718
13772
  "optional": true,
@@ -13725,6 +13779,24 @@
13725
13779
  }
13726
13780
  }
13727
13781
  },
13782
+ {
13783
+ "abstract": true,
13784
+ "docs": {
13785
+ "default": "false",
13786
+ "stability": "experimental",
13787
+ "summary": "Setup Biome."
13788
+ },
13789
+ "immutable": true,
13790
+ "locationInModule": {
13791
+ "filename": "src/projects/typescript-options.generated.ts",
13792
+ "line": 278
13793
+ },
13794
+ "name": "biome",
13795
+ "optional": true,
13796
+ "type": {
13797
+ "primitive": "boolean"
13798
+ }
13799
+ },
13728
13800
  {
13729
13801
  "abstract": true,
13730
13802
  "docs": {
@@ -13752,7 +13824,7 @@
13752
13824
  "immutable": true,
13753
13825
  "locationInModule": {
13754
13826
  "filename": "src/projects/typescript-options.generated.ts",
13755
- "line": 741
13827
+ "line": 747
13756
13828
  },
13757
13829
  "name": "bugsEmail",
13758
13830
  "optional": true,
@@ -13769,7 +13841,7 @@
13769
13841
  "immutable": true,
13770
13842
  "locationInModule": {
13771
13843
  "filename": "src/projects/typescript-options.generated.ts",
13772
- "line": 736
13844
+ "line": 742
13773
13845
  },
13774
13846
  "name": "bugsUrl",
13775
13847
  "optional": true,
@@ -13823,7 +13895,7 @@
13823
13895
  "immutable": true,
13824
13896
  "locationInModule": {
13825
13897
  "filename": "src/projects/typescript-options.generated.ts",
13826
- "line": 499
13898
+ "line": 505
13827
13899
  },
13828
13900
  "name": "bumpPackage",
13829
13901
  "optional": true,
@@ -13841,7 +13913,7 @@
13841
13913
  "immutable": true,
13842
13914
  "locationInModule": {
13843
13915
  "filename": "src/projects/typescript-options.generated.ts",
13844
- "line": 731
13916
+ "line": 737
13845
13917
  },
13846
13918
  "name": "bundledDeps",
13847
13919
  "optional": true,
@@ -13881,7 +13953,7 @@
13881
13953
  "immutable": true,
13882
13954
  "locationInModule": {
13883
13955
  "filename": "src/projects/typescript-options.generated.ts",
13884
- "line": 716
13956
+ "line": 722
13885
13957
  },
13886
13958
  "name": "bunVersion",
13887
13959
  "optional": true,
@@ -13918,7 +13990,7 @@
13918
13990
  "immutable": true,
13919
13991
  "locationInModule": {
13920
13992
  "filename": "src/projects/typescript-options.generated.ts",
13921
- "line": 847
13993
+ "line": 853
13922
13994
  },
13923
13995
  "name": "clobber",
13924
13996
  "optional": true,
@@ -13937,7 +14009,7 @@
13937
14009
  "immutable": true,
13938
14010
  "locationInModule": {
13939
14011
  "filename": "src/projects/typescript-options.generated.ts",
13940
- "line": 710
14012
+ "line": 716
13941
14013
  },
13942
14014
  "name": "codeArtifactOptions",
13943
14015
  "optional": true,
@@ -13991,7 +14063,7 @@
13991
14063
  "immutable": true,
13992
14064
  "locationInModule": {
13993
14065
  "filename": "src/projects/typescript-options.generated.ts",
13994
- "line": 938
14066
+ "line": 944
13995
14067
  },
13996
14068
  "name": "commitGenerated",
13997
14069
  "optional": true,
@@ -14086,7 +14158,7 @@
14086
14158
  "immutable": true,
14087
14159
  "locationInModule": {
14088
14160
  "filename": "src/projects/typescript-options.generated.ts",
14089
- "line": 703
14161
+ "line": 709
14090
14162
  },
14091
14163
  "name": "deps",
14092
14164
  "optional": true,
@@ -14149,7 +14221,7 @@
14149
14221
  "immutable": true,
14150
14222
  "locationInModule": {
14151
14223
  "filename": "src/projects/typescript-options.generated.ts",
14152
- "line": 690
14224
+ "line": 696
14153
14225
  },
14154
14226
  "name": "description",
14155
14227
  "optional": true,
@@ -14167,7 +14239,7 @@
14167
14239
  "immutable": true,
14168
14240
  "locationInModule": {
14169
14241
  "filename": "src/projects/typescript-options.generated.ts",
14170
- "line": 841
14242
+ "line": 847
14171
14243
  },
14172
14244
  "name": "devContainer",
14173
14245
  "optional": true,
@@ -14189,7 +14261,7 @@
14189
14261
  "immutable": true,
14190
14262
  "locationInModule": {
14191
14263
  "filename": "src/projects/typescript-options.generated.ts",
14192
- "line": 682
14264
+ "line": 688
14193
14265
  },
14194
14266
  "name": "devDeps",
14195
14267
  "optional": true,
@@ -14284,7 +14356,7 @@
14284
14356
  "immutable": true,
14285
14357
  "locationInModule": {
14286
14358
  "filename": "src/projects/typescript-options.generated.ts",
14287
- "line": 665
14359
+ "line": 671
14288
14360
  },
14289
14361
  "name": "entrypoint",
14290
14362
  "optional": true,
@@ -14321,7 +14393,7 @@
14321
14393
  "immutable": true,
14322
14394
  "locationInModule": {
14323
14395
  "filename": "src/projects/typescript-options.generated.ts",
14324
- "line": 835
14396
+ "line": 841
14325
14397
  },
14326
14398
  "name": "github",
14327
14399
  "optional": true,
@@ -14339,7 +14411,7 @@
14339
14411
  "immutable": true,
14340
14412
  "locationInModule": {
14341
14413
  "filename": "src/projects/typescript-options.generated.ts",
14342
- "line": 828
14414
+ "line": 834
14343
14415
  },
14344
14416
  "name": "githubOptions",
14345
14417
  "optional": true,
@@ -14378,7 +14450,7 @@
14378
14450
  "immutable": true,
14379
14451
  "locationInModule": {
14380
14452
  "filename": "src/projects/typescript-options.generated.ts",
14381
- "line": 932
14453
+ "line": 938
14382
14454
  },
14383
14455
  "name": "gitIgnoreOptions",
14384
14456
  "optional": true,
@@ -14395,7 +14467,7 @@
14395
14467
  "immutable": true,
14396
14468
  "locationInModule": {
14397
14469
  "filename": "src/projects/typescript-options.generated.ts",
14398
- "line": 927
14470
+ "line": 933
14399
14471
  },
14400
14472
  "name": "gitOptions",
14401
14473
  "optional": true,
@@ -14413,7 +14485,7 @@
14413
14485
  "immutable": true,
14414
14486
  "locationInModule": {
14415
14487
  "filename": "src/projects/typescript-options.generated.ts",
14416
- "line": 822
14488
+ "line": 828
14417
14489
  },
14418
14490
  "name": "gitpod",
14419
14491
  "optional": true,
@@ -14430,7 +14502,7 @@
14430
14502
  "immutable": true,
14431
14503
  "locationInModule": {
14432
14504
  "filename": "src/projects/typescript-options.generated.ts",
14433
- "line": 658
14505
+ "line": 664
14434
14506
  },
14435
14507
  "name": "homepage",
14436
14508
  "optional": true,
@@ -14448,7 +14520,7 @@
14448
14520
  "immutable": true,
14449
14521
  "locationInModule": {
14450
14522
  "filename": "src/projects/typescript-options.generated.ts",
14451
- "line": 492
14523
+ "line": 498
14452
14524
  },
14453
14525
  "name": "jsiiReleaseVersion",
14454
14526
  "optional": true,
@@ -14465,7 +14537,7 @@
14465
14537
  "immutable": true,
14466
14538
  "locationInModule": {
14467
14539
  "filename": "src/projects/typescript-options.generated.ts",
14468
- "line": 653
14540
+ "line": 659
14469
14541
  },
14470
14542
  "name": "keywords",
14471
14543
  "optional": true,
@@ -14507,7 +14579,7 @@
14507
14579
  "immutable": true,
14508
14580
  "locationInModule": {
14509
14581
  "filename": "src/projects/typescript-options.generated.ts",
14510
- "line": 648
14582
+ "line": 654
14511
14583
  },
14512
14584
  "name": "license",
14513
14585
  "optional": true,
@@ -14525,7 +14597,7 @@
14525
14597
  "immutable": true,
14526
14598
  "locationInModule": {
14527
14599
  "filename": "src/projects/typescript-options.generated.ts",
14528
- "line": 640
14600
+ "line": 646
14529
14601
  },
14530
14602
  "name": "licensed",
14531
14603
  "optional": true,
@@ -14543,7 +14615,7 @@
14543
14615
  "immutable": true,
14544
14616
  "locationInModule": {
14545
14617
  "filename": "src/projects/typescript-options.generated.ts",
14546
- "line": 922
14618
+ "line": 928
14547
14619
  },
14548
14620
  "name": "logging",
14549
14621
  "optional": true,
@@ -14562,7 +14634,7 @@
14562
14634
  "immutable": true,
14563
14635
  "locationInModule": {
14564
14636
  "filename": "src/projects/typescript-options.generated.ts",
14565
- "line": 486
14637
+ "line": 492
14566
14638
  },
14567
14639
  "name": "majorVersion",
14568
14640
  "optional": true,
@@ -14581,7 +14653,7 @@
14581
14653
  "immutable": true,
14582
14654
  "locationInModule": {
14583
14655
  "filename": "src/projects/typescript-options.generated.ts",
14584
- "line": 634
14656
+ "line": 640
14585
14657
  },
14586
14658
  "name": "maxNodeVersion",
14587
14659
  "optional": true,
@@ -14600,7 +14672,7 @@
14600
14672
  "immutable": true,
14601
14673
  "locationInModule": {
14602
14674
  "filename": "src/projects/typescript-options.generated.ts",
14603
- "line": 478
14675
+ "line": 484
14604
14676
  },
14605
14677
  "name": "minMajorVersion",
14606
14678
  "optional": true,
@@ -14619,7 +14691,7 @@
14619
14691
  "immutable": true,
14620
14692
  "locationInModule": {
14621
14693
  "filename": "src/projects/typescript-options.generated.ts",
14622
- "line": 623
14694
+ "line": 629
14623
14695
  },
14624
14696
  "name": "minNodeVersion",
14625
14697
  "optional": true,
@@ -14637,7 +14709,7 @@
14637
14709
  "immutable": true,
14638
14710
  "locationInModule": {
14639
14711
  "filename": "src/projects/typescript-options.generated.ts",
14640
- "line": 960
14712
+ "line": 966
14641
14713
  },
14642
14714
  "name": "mise",
14643
14715
  "optional": true,
@@ -14656,7 +14728,7 @@
14656
14728
  "immutable": true,
14657
14729
  "locationInModule": {
14658
14730
  "filename": "src/projects/typescript-options.generated.ts",
14659
- "line": 468
14731
+ "line": 474
14660
14732
  },
14661
14733
  "name": "nextVersionCommand",
14662
14734
  "optional": true,
@@ -14674,7 +14746,7 @@
14674
14746
  "immutable": true,
14675
14747
  "locationInModule": {
14676
14748
  "filename": "src/projects/typescript-options.generated.ts",
14677
- "line": 608
14749
+ "line": 614
14678
14750
  },
14679
14751
  "name": "npmAccess",
14680
14752
  "optional": true,
@@ -14693,7 +14765,7 @@
14693
14765
  "immutable": true,
14694
14766
  "locationInModule": {
14695
14767
  "filename": "src/projects/typescript-options.generated.ts",
14696
- "line": 444
14768
+ "line": 450
14697
14769
  },
14698
14770
  "name": "npmDistTag",
14699
14771
  "optional": true,
@@ -14747,7 +14819,7 @@
14747
14819
  "immutable": true,
14748
14820
  "locationInModule": {
14749
14821
  "filename": "src/projects/typescript-options.generated.ts",
14750
- "line": 600
14822
+ "line": 606
14751
14823
  },
14752
14824
  "name": "npmProvenance",
14753
14825
  "optional": true,
@@ -14766,7 +14838,7 @@
14766
14838
  "immutable": true,
14767
14839
  "locationInModule": {
14768
14840
  "filename": "src/projects/typescript-options.generated.ts",
14769
- "line": 589
14841
+ "line": 595
14770
14842
  },
14771
14843
  "name": "npmRegistryUrl",
14772
14844
  "optional": true,
@@ -14784,7 +14856,7 @@
14784
14856
  "immutable": true,
14785
14857
  "locationInModule": {
14786
14858
  "filename": "src/projects/typescript-options.generated.ts",
14787
- "line": 582
14859
+ "line": 588
14788
14860
  },
14789
14861
  "name": "npmTokenSecret",
14790
14862
  "optional": true,
@@ -14802,7 +14874,7 @@
14802
14874
  "immutable": true,
14803
14875
  "locationInModule": {
14804
14876
  "filename": "src/projects/typescript-options.generated.ts",
14805
- "line": 576
14877
+ "line": 582
14806
14878
  },
14807
14879
  "name": "npmTrustedPublishing",
14808
14880
  "optional": true,
@@ -14821,7 +14893,7 @@
14821
14893
  "immutable": true,
14822
14894
  "locationInModule": {
14823
14895
  "filename": "src/projects/typescript-options.generated.ts",
14824
- "line": 916
14896
+ "line": 922
14825
14897
  },
14826
14898
  "name": "outdir",
14827
14899
  "optional": true,
@@ -14857,7 +14929,7 @@
14857
14929
  "immutable": true,
14858
14930
  "locationInModule": {
14859
14931
  "filename": "src/projects/typescript-options.generated.ts",
14860
- "line": 570
14932
+ "line": 576
14861
14933
  },
14862
14934
  "name": "packageManager",
14863
14935
  "optional": true,
@@ -14878,7 +14950,7 @@
14878
14950
  "immutable": true,
14879
14951
  "locationInModule": {
14880
14952
  "filename": "src/projects/typescript-options.generated.ts",
14881
- "line": 564
14953
+ "line": 570
14882
14954
  },
14883
14955
  "name": "packageName",
14884
14956
  "optional": true,
@@ -14895,7 +14967,7 @@
14895
14967
  "immutable": true,
14896
14968
  "locationInModule": {
14897
14969
  "filename": "src/projects/typescript-options.generated.ts",
14898
- "line": 905
14970
+ "line": 911
14899
14971
  },
14900
14972
  "name": "parent",
14901
14973
  "optional": true,
@@ -14912,7 +14984,7 @@
14912
14984
  "immutable": true,
14913
14985
  "locationInModule": {
14914
14986
  "filename": "src/projects/typescript-options.generated.ts",
14915
- "line": 557
14987
+ "line": 563
14916
14988
  },
14917
14989
  "name": "peerDependencyOptions",
14918
14990
  "optional": true,
@@ -14931,7 +15003,7 @@
14931
15003
  "immutable": true,
14932
15004
  "locationInModule": {
14933
15005
  "filename": "src/projects/typescript-options.generated.ts",
14934
- "line": 552
15006
+ "line": 558
14935
15007
  },
14936
15008
  "name": "peerDeps",
14937
15009
  "optional": true,
@@ -14954,7 +15026,7 @@
14954
15026
  "immutable": true,
14955
15027
  "locationInModule": {
14956
15028
  "filename": "src/projects/typescript-options.generated.ts",
14957
- "line": 533
15029
+ "line": 539
14958
15030
  },
14959
15031
  "name": "pnpmVersion",
14960
15032
  "optional": true,
@@ -14972,7 +15044,7 @@
14972
15044
  "immutable": true,
14973
15045
  "locationInModule": {
14974
15046
  "filename": "src/projects/typescript-options.generated.ts",
14975
- "line": 436
15047
+ "line": 442
14976
15048
  },
14977
15049
  "name": "postBuildSteps",
14978
15050
  "optional": true,
@@ -14995,7 +15067,7 @@
14995
15067
  "immutable": true,
14996
15068
  "locationInModule": {
14997
15069
  "filename": "src/projects/typescript-options.generated.ts",
14998
- "line": 430
15070
+ "line": 436
14999
15071
  },
15000
15072
  "name": "prerelease",
15001
15073
  "optional": true,
@@ -15014,7 +15086,7 @@
15014
15086
  "immutable": true,
15015
15087
  "locationInModule": {
15016
15088
  "filename": "src/projects/typescript-options.generated.ts",
15017
- "line": 900
15089
+ "line": 906
15018
15090
  },
15019
15091
  "name": "projenCommand",
15020
15092
  "optional": true,
@@ -15032,7 +15104,7 @@
15032
15104
  "immutable": true,
15033
15105
  "locationInModule": {
15034
15106
  "filename": "src/projects/typescript-options.generated.ts",
15035
- "line": 816
15107
+ "line": 822
15036
15108
  },
15037
15109
  "name": "projenCredentials",
15038
15110
  "optional": true,
@@ -15086,7 +15158,7 @@
15086
15158
  "immutable": true,
15087
15159
  "locationInModule": {
15088
15160
  "filename": "src/projects/typescript-options.generated.ts",
15089
- "line": 893
15161
+ "line": 899
15090
15162
  },
15091
15163
  "name": "projenrcJson",
15092
15164
  "optional": true,
@@ -15104,7 +15176,7 @@
15104
15176
  "immutable": true,
15105
15177
  "locationInModule": {
15106
15178
  "filename": "src/projects/typescript-options.generated.ts",
15107
- "line": 887
15179
+ "line": 893
15108
15180
  },
15109
15181
  "name": "projenrcJsonOptions",
15110
15182
  "optional": true,
@@ -15196,7 +15268,7 @@
15196
15268
  "immutable": true,
15197
15269
  "locationInModule": {
15198
15270
  "filename": "src/projects/typescript-options.generated.ts",
15199
- "line": 424
15271
+ "line": 430
15200
15272
  },
15201
15273
  "name": "publishDryRun",
15202
15274
  "optional": true,
@@ -15215,7 +15287,7 @@
15215
15287
  "immutable": true,
15216
15288
  "locationInModule": {
15217
15289
  "filename": "src/projects/typescript-options.generated.ts",
15218
- "line": 418
15290
+ "line": 424
15219
15291
  },
15220
15292
  "name": "publishTasks",
15221
15293
  "optional": true,
@@ -15274,7 +15346,7 @@
15274
15346
  "immutable": true,
15275
15347
  "locationInModule": {
15276
15348
  "filename": "src/projects/typescript-options.generated.ts",
15277
- "line": 810
15349
+ "line": 816
15278
15350
  },
15279
15351
  "name": "readme",
15280
15352
  "optional": true,
@@ -15292,7 +15364,7 @@
15292
15364
  "immutable": true,
15293
15365
  "locationInModule": {
15294
15366
  "filename": "src/projects/typescript-options.generated.ts",
15295
- "line": 410
15367
+ "line": 416
15296
15368
  },
15297
15369
  "name": "releasableCommits",
15298
15370
  "optional": true,
@@ -15329,7 +15401,7 @@
15329
15401
  "immutable": true,
15330
15402
  "locationInModule": {
15331
15403
  "filename": "src/projects/typescript-options.generated.ts",
15332
- "line": 404
15404
+ "line": 410
15333
15405
  },
15334
15406
  "name": "releaseBranches",
15335
15407
  "optional": true,
@@ -15353,7 +15425,7 @@
15353
15425
  "immutable": true,
15354
15426
  "locationInModule": {
15355
15427
  "filename": "src/projects/typescript-options.generated.ts",
15356
- "line": 391
15428
+ "line": 397
15357
15429
  },
15358
15430
  "name": "releaseEnvironment",
15359
15431
  "optional": true,
@@ -15371,7 +15443,7 @@
15371
15443
  "immutable": true,
15372
15444
  "locationInModule": {
15373
15445
  "filename": "src/projects/typescript-options.generated.ts",
15374
- "line": 380
15446
+ "line": 386
15375
15447
  },
15376
15448
  "name": "releaseFailureIssue",
15377
15449
  "optional": true,
@@ -15390,7 +15462,7 @@
15390
15462
  "immutable": true,
15391
15463
  "locationInModule": {
15392
15464
  "filename": "src/projects/typescript-options.generated.ts",
15393
- "line": 374
15465
+ "line": 380
15394
15466
  },
15395
15467
  "name": "releaseFailureIssueLabel",
15396
15468
  "optional": true,
@@ -15409,7 +15481,7 @@
15409
15481
  "immutable": true,
15410
15482
  "locationInModule": {
15411
15483
  "filename": "src/projects/typescript-options.generated.ts",
15412
- "line": 367
15484
+ "line": 373
15413
15485
  },
15414
15486
  "name": "releaseTagPrefix",
15415
15487
  "optional": true,
@@ -15445,7 +15517,7 @@
15445
15517
  "immutable": true,
15446
15518
  "locationInModule": {
15447
15519
  "filename": "src/projects/typescript-options.generated.ts",
15448
- "line": 357
15520
+ "line": 363
15449
15521
  },
15450
15522
  "name": "releaseTrigger",
15451
15523
  "optional": true,
@@ -15463,7 +15535,7 @@
15463
15535
  "immutable": true,
15464
15536
  "locationInModule": {
15465
15537
  "filename": "src/projects/typescript-options.generated.ts",
15466
- "line": 351
15538
+ "line": 357
15467
15539
  },
15468
15540
  "name": "releaseWorkflowEnv",
15469
15541
  "optional": true,
@@ -15486,7 +15558,7 @@
15486
15558
  "immutable": true,
15487
15559
  "locationInModule": {
15488
15560
  "filename": "src/projects/typescript-options.generated.ts",
15489
- "line": 345
15561
+ "line": 351
15490
15562
  },
15491
15563
  "name": "releaseWorkflowName",
15492
15564
  "optional": true,
@@ -15503,7 +15575,7 @@
15503
15575
  "immutable": true,
15504
15576
  "locationInModule": {
15505
15577
  "filename": "src/projects/typescript-options.generated.ts",
15506
- "line": 339
15578
+ "line": 345
15507
15579
  },
15508
15580
  "name": "releaseWorkflowSetupSteps",
15509
15581
  "optional": true,
@@ -15526,7 +15598,7 @@
15526
15598
  "immutable": true,
15527
15599
  "locationInModule": {
15528
15600
  "filename": "src/projects/typescript-options.generated.ts",
15529
- "line": 881
15601
+ "line": 887
15530
15602
  },
15531
15603
  "name": "renovatebot",
15532
15604
  "optional": true,
@@ -15544,7 +15616,7 @@
15544
15616
  "immutable": true,
15545
15617
  "locationInModule": {
15546
15618
  "filename": "src/projects/typescript-options.generated.ts",
15547
- "line": 875
15619
+ "line": 881
15548
15620
  },
15549
15621
  "name": "renovatebotOptions",
15550
15622
  "optional": true,
@@ -15562,7 +15634,7 @@
15562
15634
  "immutable": true,
15563
15635
  "locationInModule": {
15564
15636
  "filename": "src/projects/typescript-options.generated.ts",
15565
- "line": 527
15637
+ "line": 533
15566
15638
  },
15567
15639
  "name": "repository",
15568
15640
  "optional": true,
@@ -15579,7 +15651,7 @@
15579
15651
  "immutable": true,
15580
15652
  "locationInModule": {
15581
15653
  "filename": "src/projects/typescript-options.generated.ts",
15582
- "line": 521
15654
+ "line": 527
15583
15655
  },
15584
15656
  "name": "repositoryDirectory",
15585
15657
  "optional": true,
@@ -15597,7 +15669,7 @@
15597
15669
  "immutable": true,
15598
15670
  "locationInModule": {
15599
15671
  "filename": "src/projects/typescript-options.generated.ts",
15600
- "line": 516
15672
+ "line": 522
15601
15673
  },
15602
15674
  "name": "scopedPackagesOptions",
15603
15675
  "optional": true,
@@ -15637,7 +15709,7 @@
15637
15709
  "immutable": true,
15638
15710
  "locationInModule": {
15639
15711
  "filename": "src/projects/typescript-options.generated.ts",
15640
- "line": 510
15712
+ "line": 516
15641
15713
  },
15642
15714
  "name": "stability",
15643
15715
  "optional": true,
@@ -15656,7 +15728,7 @@
15656
15728
  "immutable": true,
15657
15729
  "locationInModule": {
15658
15730
  "filename": "src/projects/typescript-options.generated.ts",
15659
- "line": 804
15731
+ "line": 810
15660
15732
  },
15661
15733
  "name": "stale",
15662
15734
  "optional": true,
@@ -15675,7 +15747,7 @@
15675
15747
  "immutable": true,
15676
15748
  "locationInModule": {
15677
15749
  "filename": "src/projects/typescript-options.generated.ts",
15678
- "line": 797
15750
+ "line": 803
15679
15751
  },
15680
15752
  "name": "staleOptions",
15681
15753
  "optional": true,
@@ -15786,7 +15858,7 @@
15786
15858
  "immutable": true,
15787
15859
  "locationInModule": {
15788
15860
  "filename": "src/projects/typescript-options.generated.ts",
15789
- "line": 334
15861
+ "line": 340
15790
15862
  },
15791
15863
  "name": "versionrcOptions",
15792
15864
  "optional": true,
@@ -15809,7 +15881,7 @@
15809
15881
  "immutable": true,
15810
15882
  "locationInModule": {
15811
15883
  "filename": "src/projects/typescript-options.generated.ts",
15812
- "line": 955
15884
+ "line": 961
15813
15885
  },
15814
15886
  "name": "vitest",
15815
15887
  "optional": true,
@@ -15827,7 +15899,7 @@
15827
15899
  "immutable": true,
15828
15900
  "locationInModule": {
15829
15901
  "filename": "src/projects/typescript-options.generated.ts",
15830
- "line": 950
15902
+ "line": 956
15831
15903
  },
15832
15904
  "name": "vitestOptions",
15833
15905
  "optional": true,
@@ -15846,7 +15918,7 @@
15846
15918
  "immutable": true,
15847
15919
  "locationInModule": {
15848
15920
  "filename": "src/projects/typescript-options.generated.ts",
15849
- "line": 790
15921
+ "line": 796
15850
15922
  },
15851
15923
  "name": "vscode",
15852
15924
  "optional": true,
@@ -15887,7 +15959,7 @@
15887
15959
  "immutable": true,
15888
15960
  "locationInModule": {
15889
15961
  "filename": "src/projects/typescript-options.generated.ts",
15890
- "line": 327
15962
+ "line": 333
15891
15963
  },
15892
15964
  "name": "workflowContainerImage",
15893
15965
  "optional": true,
@@ -15964,7 +16036,7 @@
15964
16036
  "immutable": true,
15965
16037
  "locationInModule": {
15966
16038
  "filename": "src/projects/typescript-options.generated.ts",
15967
- "line": 321
16039
+ "line": 327
15968
16040
  },
15969
16041
  "name": "workflowRunsOn",
15970
16042
  "optional": true,
@@ -15990,7 +16062,7 @@
15990
16062
  "immutable": true,
15991
16063
  "locationInModule": {
15992
16064
  "filename": "src/projects/typescript-options.generated.ts",
15993
- "line": 313
16065
+ "line": 319
15994
16066
  },
15995
16067
  "name": "workflowRunsOnGroup",
15996
16068
  "optional": true,
@@ -16008,7 +16080,7 @@
16008
16080
  "immutable": true,
16009
16081
  "locationInModule": {
16010
16082
  "filename": "src/projects/typescript-options.generated.ts",
16011
- "line": 505
16083
+ "line": 511
16012
16084
  },
16013
16085
  "name": "yarnBerryOptions",
16014
16086
  "optional": true,
@@ -16588,6 +16660,6 @@
16588
16660
  "symbolId": "src/components/vitest:VitestOptions"
16589
16661
  }
16590
16662
  },
16591
- "version": "0.0.10",
16592
- "fingerprint": "W3OHqyuNR72ACuMZ4+dqZuCgWr++xabOgak/IzMADj8="
16663
+ "version": "0.0.12",
16664
+ "fingerprint": "pGQoBRmZdKep6ri+yRihvxe0VXV0yFoeNqvAKoFUwFA="
16593
16665
  }