forked from IdentityMan/MasterclassELDK26
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
44 lines (35 loc) · 653 Bytes
/
.gitignore
File metadata and controls
44 lines (35 loc) · 653 Bytes
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
# Ignore node_modules everywhere
node_modules/
# Ignore package-lock.json or yarn.lock (optional, if using npm workspaces)
package-lock.json
yarn.lock
pnpm-lock.yaml
# Ignore build artifacts
dist/
build/
.out/
.vscode/
.idea/
# Ignore environment files
.env
.env.local
.env.*.local
# Ignore logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
# Ignore TypeScript build output
*.tsbuildinfo
# Ignore MacOS system files
.DS_Store
# Ignore Husky hooks (optional)
.husky/_
# Ignore lint-staged cache (optional)
.lintstagedrc
# Ignore temporary editor/project files
*.swp
*.swo
*.sublime-project
*.sublime-workspace