/ .gitignore
.gitignore
1 # Node modules 2 node_modules/ 3 4 # Logs 5 logs/ 6 *.log 7 npm-debug.log* 8 yarn-debug.log* 9 yarn-error.log* 10 11 # Runtime data 12 pids 13 *.pid 14 *.seed 15 *.pid.lock 16 17 # Directory for instrumented libs generated by jscoverage/JSCover 18 lib-cov 19 20 # Coverage directory used by tools like istanbul 21 coverage/ 22 23 # nyc test coverage 24 .nyc_output/ 25 26 # Output directories 27 output/ 28 dist/ 29 build/ 30 31 # dotenv environment variables file 32 .env 33 .env.* 34 35 # Mac system files 36 .DS_Store 37 38 # VSCode settings 39 .vscode/ 40 41 # Misc 42 *.tgz 43 44 # Optional npm cache directory 45 .npm 46 47 # Optional eslint cache 48 .eslintcache 49 50 # Unresolved report 51 unresolved-report.txt 52 53 # CSV files 54 csv/ 55 56 .claude/