/ .gitignore
.gitignore
1 # compiled output 2 /dist 3 /node_modules 4 /build 5 6 # Logs 7 logs 8 *.log 9 npm-debug.log* 10 pnpm-debug.log* 11 yarn-debug.log* 12 yarn-error.log* 13 lerna-debug.log* 14 15 # OS 16 .DS_Store 17 18 # Tests 19 /coverage 20 /.nyc_output 21 22 # IDEs and editors 23 /.idea 24 .project 25 .classpath 26 .c9/ 27 *.launch 28 .settings/ 29 *.sublime-workspace 30 31 # IDE - VSCode 32 .vscode/* 33 !.vscode/settings.json 34 !.vscode/tasks.json 35 !.vscode/launch.json 36 !.vscode/extensions.json 37 38 # dotenv environment variable files 39 .env 40 .env.development.local 41 .env.test.local 42 .env.production.local 43 .env.local 44 45 # temp directory 46 .temp 47 .tmp 48 49 # Runtime data 50 pids 51 *.pid 52 *.seed 53 *.pid.lock 54 55 # Diagnostic reports (https://nodejs.org/api/report.html) 56 report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json