| 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 |
| 41 | .env.test |
| 42 | .env.production |
| 43 | |
| 44 | # temp directory |
| 45 | .temp |
| 46 | .tmp |
| 47 | |
| 48 | # Runtime data |
| 49 | pids |
| 50 | *.pid |
| 51 | *.seed |
| 52 | *.pid.lock |
| 53 | |
| 54 | # Diagnostic reports (https://nodejs.org/api/report.html) |
| 55 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json |
| 56 |