2 Star 5 Fork 0

Genius/tj-jstools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.ts 557 Bytes
一键复制 编辑 原始数据 按行查看 历史
geniusmanyxh 提交于 2023-02-02 17:06 . ci: 新增vitest配置
/// <reference types="vitest" />
import { defineConfig, UserConfig } from "vite";
export const config = {
test: {
// enable jest-like global test APIs
globals: true,
// simulate DOM with happy-dom
// (requires installing happy-dom as a peer dependency)
environment: "happy-dom",
// 支持tsx组件,很关键
transformMode: {
web: [/.[tj]sx$/],
},
coverage: {
provider: "c8", // or 'c8',istanbul
reporter: ["text", "json", "html"],
},
},
};
export default defineConfig(config as UserConfig);
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/geniusman/tj-jstools.git
git@gitee.com:geniusman/tj-jstools.git
geniusman
tj-jstools
tj-jstools
master

搜索帮助