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