mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-19 09:33:53 +00:00
添加测试基础设施和改进配置文件: - 添加 vitest.config.js 用于单元测试配置 - 配置测试覆盖率报告(v8 provider) - 修复 postcss.config.js 的 eslint 警告 - 设置测试环境为 Node.js
8 lines
113 B
JavaScript
8 lines
113 B
JavaScript
/* eslint-disable no-undef */
|
|
module.exports = {
|
|
plugins: {
|
|
tailwindcss: {},
|
|
autoprefixer: {},
|
|
},
|
|
};
|