feat(tree): replace react-arborist with custom tree implementation

This commit is contained in:
Philipinho
2026-05-13 16:51:28 +01:00
parent a689cca7a0
commit 9e365787bb
30 changed files with 3441 additions and 1391 deletions
+17
View File
@@ -0,0 +1,17 @@
import { defineConfig } from 'vitest/config';
import react from '@vitejs/plugin-react';
import * as path from 'path';
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
test: {
environment: 'jsdom',
globals: true,
setupFiles: [],
},
});