15 lines
434 B
TypeScript
15 lines
434 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
import path from 'path';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'@gridpilot/shared-result': path.resolve(__dirname, 'packages/shared/result/Result.ts'),
|
|
'@gridpilot/automation': path.resolve(__dirname, 'packages/automation'),
|
|
'@gridpilot/automation/*': path.resolve(__dirname, 'packages/automation/*'),
|
|
},
|
|
},
|
|
}); |