- src/lib/migrate.js: v1->v2 migration - src/store/boardStore.js: canonical useBoardStore hook (P2 ratified by orchestrator) - Jest + RTL + jsdom + @dnd-kit + identity-obj-proxy (merged from P5's package.json)
10 lines
323 B
JavaScript
10 lines
323 B
JavaScript
// Babel config is consumed ONLY by Jest via babel-jest.
|
|
// Vite uses esbuild and ignores babel.config.js for builds,
|
|
// so this does not interfere with the dev server.
|
|
export default {
|
|
presets: [
|
|
['@babel/preset-env', { targets: { node: 'current' } }],
|
|
['@babel/preset-react', { runtime: 'automatic' }],
|
|
],
|
|
};
|