浏览代码

chore: 添加 .gitignore 文件

- 新建 .gitignore 文件,列出不希望 Git 跟踪的文件和目录
-忽略日志文件、临时文件、依赖目录等
- 包含测试覆盖率报告、IDE 配置文件等
mws 4 月之前
父节点
当前提交
383581fef8
共有 1 个文件被更改,包括 23 次插入0 次删除
  1. 23 0
      .gitignore

+ 23 - 0
.gitignore

@@ -0,0 +1,23 @@
+.DS_Store
+node_modules/
+dist/
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+**/*.log
+
+tests/**/coverage/
+tests/e2e/reports
+selenium-debug.log
+
+# Editor directories and files
+.idea
+.vscode
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.local
+
+package-lock.json
+yarn.lock