-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
63 lines (50 loc) · 955 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Dependency directories
node_modules/
# Ignore operating system and editor-specific files
.DS_Store
Thumbs.db
.vscode/
*.swp
*.swo
# Ignore compiled files and build/distribution directories
/dist/
/build/
# Ignore TypeScript declaration files (if you're not committing them)
*.d.ts
# Ignore log files, cache, and temporary files
*.log
*.log.*
npm-debug.log*
yarn-debug.log*
yarn-error.log*
/tmp
/temp
**/cache/
# Ignore sensitive data
.env
.env.local
.env.*.local
*.pem
# Ignore IDE and editor config files
.idea/
*.sublime-workspace
*.sublime-project
# Ignore JetBrains project files
*.iml
.idea/
*.iws
*.ipr
# Ignore the npm/yarn internal files
package-lock.json
yarn.lock
# Ignore coverage directory created by tools like nyc
/coverage/
# Additional directories or files to ignore
/.pnp
.pnp.js
# Debug log from npm
npm-debug.log*
# Ignore production/distribution files if source is different
/public/
# Environment local override
.local