-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
57 lines (44 loc) · 849 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
# Build files
node_modules/
dist/
public/build/ # Added specific build artifact path
# Editor stuff
.vscode/
# Testing
*.test.js
*.spec.js
# Misc
.DS_Store
package-lock.json
# Specific to Svelte
.svelte-kit/*
**/__sapper__*
**/node_modules/
# Local History for Visual Studio Code
.history/
# Built Visual Studio Code Extensions
*.vsix
### VisualStudioCode Patch ###
# Specific VS Code settings to ignore
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets
# Environment variables
.env*
# Editor temporary files
# Adjust these based on your editor
.vscode/
.idea/
# Test coverage reports
coverage/
# Temporary files created by Bun (if using Bun)
__bun_temp/
# Local Netlify folder
.netlify
# Bun specific
bun.lockb
bun.*
vite.config.js.timestamp-*
vite.config.ts.timestamp-*