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'
4545 * @since 0.0.1
4646 * @public
4747 */
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' ] } ) ] ,
5050 test : {
5151 watch : false ,
5252 globals : true ,
5353 testTimeout : 10_000 ,
54- setupFiles : existsSync ( './vitest.setup.ts' ) ? [ './vitest.setup.ts' ] : [ ] ,
54+ setupFiles : /* @__PURE__ */ existsSync ( './vitest.setup.ts' )
55+ ? [ './vitest.setup.ts' ]
56+ : [ ] ,
5557 } ,
5658 define : { 'import.meta.vitest' : 'undefined' } ,
5759} )
@@ -124,4 +126,5 @@ export const reduxVitestConfig: UserConfig = defineConfig({
124126 */
125127export const createVitestConfig = (
126128 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