25 lines
998 B
TypeScript
25 lines
998 B
TypeScript
import path from 'node:path';
|
|
import { fileURLToPath } from 'node:url';
|
|
import { defineConfig } from 'vitest/config';
|
|
|
|
const currentDir = path.dirname(fileURLToPath(import.meta.url));
|
|
const dashboardSrcPath = path.resolve(currentDir, 'src');
|
|
|
|
export default defineConfig({
|
|
resolve: {
|
|
alias: {
|
|
'#app': path.resolve(dashboardSrcPath, 'app'),
|
|
'#assets': path.resolve(dashboardSrcPath, 'assets'),
|
|
'#components': path.resolve(dashboardSrcPath, 'components'),
|
|
'#features': path.resolve(dashboardSrcPath, 'features'),
|
|
'#layout': path.resolve(dashboardSrcPath, 'layout'),
|
|
'#lib': path.resolve(dashboardSrcPath, 'lib'),
|
|
'#navigation': path.resolve(dashboardSrcPath, 'navigation'),
|
|
'#router': path.resolve(dashboardSrcPath, 'router'),
|
|
'#types': path.resolve(dashboardSrcPath, 'types'),
|
|
'@insforge/shared-schemas': path.resolve(currentDir, '../shared-schemas/src'),
|
|
'@insforge/ui': path.resolve(currentDir, '../ui/src'),
|
|
},
|
|
},
|
|
});
|