refactor: extract store package (#1109)

This commit is contained in:
Himself65
2023-02-18 02:41:22 -06:00
committed by GitHub
parent af28418e61
commit 9d21c3efbb
34 changed files with 681 additions and 337 deletions
+13 -1
View File
@@ -1,8 +1,13 @@
import path from 'node:path';
import react from '@vitejs/plugin-react';
import { fileURLToPath } from 'url';
import { defineConfig } from 'vitest/config';
export default defineConfig({
plugins: [react()],
test: {
include: ['packages/**/*.spec.ts'],
include: ['packages/**/*.spec.ts', 'packages/**/*.spec.tsx'],
testTimeout: 5000,
coverage: {
provider: 'istanbul', // or 'c8'
@@ -10,4 +15,11 @@ export default defineConfig({
reportsDirectory: '.coverage/store',
},
},
resolve: {
alias: {
'@affine/store': path.resolve(
fileURLToPath(new URL('packages/store', import.meta.url))
),
},
},
});