-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
84 lines (66 loc) · 1.19 KB
/
.gitignore
File metadata and controls
84 lines (66 loc) · 1.19 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
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# Dependencies
node_modules
.pnp
.pnp.js
# Local env files
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# Testing
coverage
# Turbo
.turbo
# Vercel
.vercel
# Build Outputs
.next/
out/
build
dist
# TypeScript build artifacts (comprehensive)
*.d.ts
*.d.ts.map
*.js.map
*.tsbuildinfo
# Compiled JavaScript files in source directories
apps/**/*.js
packages/**/*.js
!apps/**/src/**/*.config.js
!packages/**/src/**/*.config.js
# Next.js app specific build files
apps/web/app/**/*.js
apps/web/app/**/*.d.ts
apps/web/app/**/*.d.ts.map
# UI Components build artifacts
packages/ui/src/**/*.js
packages/ui/src/**/*.d.ts
packages/ui/src/**/*.d.ts.map
packages/ui/lib/**/*
packages/ui/dist/**/*
# Router API build artifacts
apps/router-api/src/**/*.js
apps/router-api/src/**/*.d.ts
apps/router-api/src/**/*.d.ts.map
apps/router-api/lib/**/*
# AI SDK and smart router specific
.ai-cache/
.cache/
# Debug
npm-debug.log*
# Misc
.DS_Store
*.pem
# Prisma
packages/database/generated
# ESLint cache
.eslintcache
.zed/
.vscode/
# IDE files
.vscode/settings.json
.idea/
# OS generated files
Thumbs.db