# 开发相关文件 .eslintrc.cjs .eslintignore .prettierrc.cjs .gitignore vite.config.js vitest.config.js tsconfig.json jsconfig.json # 构建和缓存目录 node_modules/ dist/ .vite/ .cache/ # 开发工具配置 .vscode/ .idea/ .editorconfig # 日志文件 *.log npm-debug.log* yarn-debug.log* yarn-error.log* # 测试相关 coverage/ .nyc_output/ test/ tests/ __tests__/ *.test.js *.test.ts *.spec.js *.spec.ts # 其他 .DS_Store .env* !.env.example