@codedrifters/configulator 0.0.451 → 0.0.452

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/lib/index.js CHANGED
@@ -42172,11 +42172,11 @@ var TypeScriptProject = class extends import_projen24.typescript.TypeScriptProje
42172
42172
  this.tsconfig?.file.addOverride("compilerOptions.skipLibCheck", true);
42173
42173
  if (options.testRunner === TestRunner.VITEST) {
42174
42174
  new Vitest(this, {
42175
+ ...options.vitestOptions,
42175
42176
  config: {
42176
42177
  include: ["src/**/*.{test,spec}.?(c|m)[jt]s?(x)"],
42177
42178
  ...options.vitestOptions?.config
42178
- },
42179
- ...options.vitestOptions
42179
+ }
42180
42180
  });
42181
42181
  } else {
42182
42182
  this.deps.removeDependency("ts-jest");
@@ -44310,11 +44310,11 @@ var AwsCdkProject = class extends import_projen31.awscdk.AwsCdkTypeScriptApp {
44310
44310
  this.tsconfig?.file.addOverride("compilerOptions.skipLibCheck", true);
44311
44311
  if (testRunner === TestRunner.VITEST) {
44312
44312
  new Vitest(this, {
44313
+ ...options.vitestOptions,
44313
44314
  config: {
44314
44315
  include: ["src/**/*.{test,spec}.?(c|m)[jt]s?(x)"],
44315
44316
  ...options.vitestOptions?.config
44316
- },
44317
- ...options.vitestOptions
44317
+ }
44318
44318
  });
44319
44319
  } else {
44320
44320
  this.deps.removeDependency("ts-jest");