/ .gitignore
.gitignore
 1  # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
 2  
 3  # dependencies
 4  /node_modules
 5  /.pnp
 6  .pnp.*
 7  .yarn/*
 8  !.yarn/patches
 9  !.yarn/plugins
10  !.yarn/releases
11  !.yarn/versions
12  
13  # testing
14  /coverage
15  
16  # electron-forge output
17  /.vite/
18  /out/
19  
20  # production
21  /build
22  /dist
23  
24  # misc
25  .DS_Store
26  *.pem
27  
28  # debug
29  npm-debug.log*
30  yarn-debug.log*
31  yarn-error.log*
32  .pnpm-debug.log*
33  
34  # env files (can opt-in for committing if needed)
35  .env*
36  !.env.example
37  !.envrc
38  
39  # vercel
40  .vercel
41  
42  # typescript
43  *.tsbuildinfo