-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.gitignore
More file actions
125 lines (113 loc) · 3.3 KB
/
.gitignore
File metadata and controls
125 lines (113 loc) · 3.3 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
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
###############################################################################
# Dependency directories
###############################################################################
**/node_modules/
###############################################################################
# Build / cache artifacts
###############################################################################
dist/
build/
out/
out-tsc/
bundle-size-dist/
temp/
temp-app/
tmp/
.sst/
.build/
.turbo/
**/.turbo/**
.turbo-cache/*
!.turbo-cache/.gitkeep
.nx/cache/
.nx/workspace-data/
_cdk.context.json
.cdk.context.json
packages/**/stats.yml
packages/**/meta.json
packages/**/build-metafile.json
packages/docs/*/public/*.js
packages/docs/*/public/*.js.map
packages/docs/*/public/llms-full.txt
packages/docs/*/knowledge/
packages/docs/*/public/exports
.wireit
.lint-cache
.pnpm-store
###############################################################################
# Framework-specific outputs
###############################################################################
# Angular
.angular/
**/*.angular/cache
**/.ng-doc/**
**/ng-doc/**
ng-doc/
# SvelteKit
**/*.svelte-kit/output
###############################################################################
# Documentation & static-site tooling
###############################################################################
packages/**/build
packages/**/generated/**
!packages/**/generated/.gitkeep
packages/**/src/doc-props.json
packages/**/angular*/src/assets/doc-props/doc-properties.json
packages/docs/qui-docs/src/routes/changelogs*
packages/docs/react-docs/src/routes/changelogs*
packages/docs/react-table-docs/src/routes/changelogs*
packages/docs/react-vscode-docs/src/routes/changelogs*
.typedoc
###############################################################################
# Environment / secrets
###############################################################################
.env*
web/.env
certs/*.pem
**/*/certs/**/*.pem
certs/*
!certs/.gitkeep
###############################################################################
# Logs & debug info
###############################################################################
*.log
.log*
yarn-error.log
.pnpm-debug.log
.pnpm-debug.log_
vite*.config.ts.timestamp*
.eslintcache
.nyc_output/
.aiignore
.aider*
!.aiderignore
###############################################################################
# TypeScript incremental build info
###############################################################################
tsconfig.tsbuildinfo
tsconfig.*.tsbuildinfo
###############################################################################
# Test artifacts & screenshots
###############################################################################
**screenshots**
.react-router/
**/*\wsl.*
**/coverage
packages/**/.vitest-attachments
###############################################################################
# OS / editor / IDE files
###############################################################################
.DS_Store
.fleet/
.idea/
.webstorm/backup
.ai
###############################################################################
# Keep-tracked placeholder
###############################################################################
!generated/.gitkeep
!.idea/bookmarks.json
!.aider.conf.yml
.angular
vite.config.*.timestamp*
vitest.config.*.timestamp*