mirror of
https://github.com/vercel/workflow.git
synced 2026-09-14 19:59:43 +08:00
16 lines
342 B
TypeScript
16 lines
342 B
TypeScript
import { fileURLToPath } from 'node:url';
|
|
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
resolve: {
|
|
alias: {
|
|
'@workflow/core/runtime/world-target': fileURLToPath(
|
|
new URL('./packages/world-local/src/index.ts', import.meta.url)
|
|
),
|
|
},
|
|
},
|
|
test: {
|
|
testTimeout: 60_000,
|
|
},
|
|
});
|