1 Star 0 Fork 14

张吉东/AFFiNE

forked from Gitee 极速下载/AFFiNE 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vitest.config.ts 598 Bytes
一键复制 编辑 原始数据 按行查看 历史
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', 'packages/**/*.spec.tsx'],
testTimeout: 5000,
coverage: {
provider: 'istanbul', // or 'c8'
reporter: ['lcov'],
reportsDirectory: '.coverage/store',
},
},
resolve: {
alias: {
'@affine/store': path.resolve(
fileURLToPath(new URL('packages/store', import.meta.url))
),
},
},
});
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/zzdpy/AFFiNE.git
git@gitee.com:zzdpy/AFFiNE.git
zzdpy
AFFiNE
AFFiNE
master

搜索帮助