-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
145 lines (111 loc) · 1.7 KB
/
.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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
# Build artifacts
dist/
build/
.next/
# Local environment files
.env.local
.env
# IDE and editor specific files
*.suo
*.user
*.tmp
*.log
*.bak
*.swp
# Logs
logs/
# Test files
*.spec.js
*.spec.ts
*.spec.jsx
*.spec.tsx
# Coverage reports
coverage/
# IDE and editor specific files
.idea/
.vscode/
.DS_Store
# npm and yarn cache
.npmrc
node_modules/
yarn.lock
# Temporary files
.DS_Store
Thumbs.db
*.pem
*.key
# Database files
*.sqlite3
*.db
*.sql
# Local configuration
config.local.js
config.local.ts
config.local.json
# Shared UI components
shared/ui-components/src/**/*.spec.ts
shared/ui-components/src/**/*.spec.js
# Shared utilities
shared/utils/src/**/*.spec.ts
shared/utils/src/**/*.spec.js
# API source code
api/src/**/*.spec.ts
api/src/**/*.spec.js
# Tools source code
tools/src/**/*.spec.ts
tools/src/**/*.spec.js
# Docker related files
docker-compose.yml
dockerfile
# Jest configuration
jest.config.js
# Lerna configuration
lerna.json
# Husky configuration
.husky/
# Prettier configuration
.prettierrc
# Next.js build output
out/
# TypeScript build output
build/
# Storybook build output
storybook-static/
# Cypress test results
cypress/results/
# Jest coverage reports
coverage/
# ESLint reports
eslint-reports/
# Other build artifacts
*.d.ts
*.d.ts.map
*.d.ts.d.ts
*.d.ts.d.ts.map
*.d.ts.d.ts.d.ts
*.d.ts.d.ts.d.ts.map
*.js.map
*.css.map
*.json.map
*.svg.map
*.png.map
*.jpg.map
*.gif.map
*.webp.map
# Serverless framework build output
serverless/
# AWS SAM build output
sam/
# Vercel build output
.vercel/
# Netlify build output
.netlify/
# Gatsby build output
public/
# Next.js Serverless Functions build output
.serverless/
# Firebase build output
firebase/
# Generated code
*.gen.ts
*.gen.js