-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
94 lines (81 loc) · 1.94 KB
/
Copy path.gitignore
File metadata and controls
94 lines (81 loc) · 1.94 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# ==============================================================================
# 1. Core Dependency Folders
# ==============================================================================
node_modules/
jspm_packages/
.pnp/
.pnp.*
# ==============================================================================
# 2. Package Manager Specifics (Lock Files & Overrides Ignored)
# ==============================================================================
# npm
.npm/
anon-doc-*.txt
npm-debug.log*
package-lock.json
# pnpm
.pnpm-store/
store.lock
pnpm-lock.yaml
# Yarn Classic (v1) & Yarn Berry (v2+)
yarn-debug.log*
yarn-error.log*
yarn.lock
# Yarn Berry / Modern (v2+) Specifics
.yarn/cache/
.yarn/build-errors.log
.yarn/install-state.gz
# Bun (Modern runtime & package manager)
bun.lockb
bun.lock
.bun/
# Lerna
lerna-debug.log*
# ==============================================================================
# 3. Build Outputs & Bundlers (Rollup, Vite, Webpack, etc.)
# ==============================================================================
dist/
build/
out/
.next/
.nuxt/
.docusaurus/
.turbo/
.cache/
.parcel-cache/
.rollup.cache/
# TypeScript
*.tsbuildinfo
# ==============================================================================
# 4. Logs, Runtime Data & System Files
# ==============================================================================
logs/
*.log
pid
*.pid
*.seed
*.pid.lock
# System Files
.DS_Store
Thumbs.db
# ==============================================================================
# 5. Security & Local Configurations (CRITICAL)
# ==============================================================================
.npmrc
.yarnrc
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
*.pem
# IDEs and Editors
.idea/
.vscode/*
!.vscode/extensions.json
!.vscode/settings.json
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?