@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 +4 -4
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +4 -4
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.mjs
CHANGED
|
@@ -41778,11 +41778,11 @@ var TypeScriptProject = class extends typescript.TypeScriptProject {
|
|
|
41778
41778
|
this.tsconfig?.file.addOverride("compilerOptions.skipLibCheck", true);
|
|
41779
41779
|
if (options.testRunner === TestRunner.VITEST) {
|
|
41780
41780
|
new Vitest(this, {
|
|
41781
|
+
...options.vitestOptions,
|
|
41781
41782
|
config: {
|
|
41782
41783
|
include: ["src/**/*.{test,spec}.?(c|m)[jt]s?(x)"],
|
|
41783
41784
|
...options.vitestOptions?.config
|
|
41784
|
-
}
|
|
41785
|
-
...options.vitestOptions
|
|
41785
|
+
}
|
|
41786
41786
|
});
|
|
41787
41787
|
} else {
|
|
41788
41788
|
this.deps.removeDependency("ts-jest");
|
|
@@ -43920,11 +43920,11 @@ var AwsCdkProject = class extends awscdk.AwsCdkTypeScriptApp {
|
|
|
43920
43920
|
this.tsconfig?.file.addOverride("compilerOptions.skipLibCheck", true);
|
|
43921
43921
|
if (testRunner === TestRunner.VITEST) {
|
|
43922
43922
|
new Vitest(this, {
|
|
43923
|
+
...options.vitestOptions,
|
|
43923
43924
|
config: {
|
|
43924
43925
|
include: ["src/**/*.{test,spec}.?(c|m)[jt]s?(x)"],
|
|
43925
43926
|
...options.vitestOptions?.config
|
|
43926
|
-
}
|
|
43927
|
-
...options.vitestOptions
|
|
43927
|
+
}
|
|
43928
43928
|
});
|
|
43929
43929
|
} else {
|
|
43930
43930
|
this.deps.removeDependency("ts-jest");
|