/ .gitignore
.gitignore
1 # Dependencies 2 node_modules/ 3 .pnp 4 .pnp.js 5 6 # Build 7 dist/ 8 build/ 9 storybook-static/ 10 11 # IDE 12 .idea/ 13 .vscode/ 14 *.swp 15 *.swo 16 17 # OS 18 .DS_Store 19 Thumbs.db 20 21 # Logs 22 *.log 23 npm-debug.log* 24 yarn-debug.log* 25 yarn-error.log* 26 27 # Coverage 28 coverage/ 29 30 # Environment 31 .env 32 .env.local 33 .env.*.local 34 35 # Cache 36 .cache/ 37 .eslintcache 38 *.tsbuildinfo