File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
packages/configs/vitest/src Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -45,13 +45,15 @@ import { defineConfig, mergeConfig } from 'vitest/config'
45
45
* @since 0.0.1
46
46
* @public
47
47
*/
48
- export const reduxVitestConfig : UserConfig = defineConfig ( {
49
- plugins : [ tsconfigPaths ( { projects : [ './tsconfig.json' ] } ) ] ,
48
+ export const reduxVitestConfig : UserConfig = /* @__PURE__ */ defineConfig ( {
49
+ plugins : [ /* @__PURE__ */ tsconfigPaths ( { projects : [ './tsconfig.json' ] } ) ] ,
50
50
test : {
51
51
watch : false ,
52
52
globals : true ,
53
53
testTimeout : 10_000 ,
54
- setupFiles : existsSync ( './vitest.setup.ts' ) ? [ './vitest.setup.ts' ] : [ ] ,
54
+ setupFiles : /* @__PURE__ */ existsSync ( './vitest.setup.ts' )
55
+ ? [ './vitest.setup.ts' ]
56
+ : [ ] ,
55
57
} ,
56
58
define : { 'import.meta.vitest' : 'undefined' } ,
57
59
} )
@@ -124,4 +126,5 @@ export const reduxVitestConfig: UserConfig = defineConfig({
124
126
*/
125
127
export const createVitestConfig = (
126
128
additionalOverrides : UserConfig = { } ,
127
- ) : UserConfig => mergeConfig ( reduxVitestConfig , additionalOverrides )
129
+ ) : UserConfig =>
130
+ /* @__PURE__ */ mergeConfig ( reduxVitestConfig , additionalOverrides )
You can’t perform that action at this time.
0 commit comments