mirror of
https://github.com/LHY0125/PathEditor.git
synced 2026-06-29 01:45:54 +08:00
2b372cbf89
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
14 lines
267 B
TypeScript
14 lines
267 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
import path from 'node:path';
|
|
|
|
export default defineConfig({
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, 'src'),
|
|
},
|
|
},
|
|
test: {
|
|
exclude: ['e2e/**', 'node_modules/**', 'src-tauri/**'],
|
|
},
|
|
});
|