Mercurial
comparison playground/.gitignore @ 12:de54585a40f1
Adding bun and node modules.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Thu, 02 Oct 2025 14:39:48 -0700 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 11:f33d9ff8b6e8 | 12:de54585a40f1 |
|---|---|
| 1 # dependencies (bun install) | |
| 2 node_modules | |
| 3 | |
| 4 # output | |
| 5 out | |
| 6 dist | |
| 7 *.tgz | |
| 8 | |
| 9 # code coverage | |
| 10 coverage | |
| 11 *.lcov | |
| 12 | |
| 13 # logs | |
| 14 logs | |
| 15 _.log | |
| 16 report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json | |
| 17 | |
| 18 # dotenv environment variable files | |
| 19 .env | |
| 20 .env.development.local | |
| 21 .env.test.local | |
| 22 .env.production.local | |
| 23 .env.local | |
| 24 | |
| 25 # caches | |
| 26 .eslintcache | |
| 27 .cache | |
| 28 *.tsbuildinfo | |
| 29 | |
| 30 # IntelliJ based IDEs | |
| 31 .idea | |
| 32 | |
| 33 # Finder (MacOS) folder config | |
| 34 .DS_Store |