File tree Expand file tree Collapse file tree 1 file changed +94
-0
lines changed Expand file tree Collapse file tree 1 file changed +94
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Angular
2
+ # Build output
3
+ /dist /
4
+ /out-tsc /
5
+ /tmp /
6
+ /coverage /
7
+ /e2e /test-output /
8
+ /.angular /
9
+
10
+ # Node modules
11
+ /node_modules /
12
+
13
+ # Dependency directories
14
+ /.npm /
15
+ /.yarn /
16
+
17
+ # Package lock and yarn lock files
18
+ /package-lock.json
19
+ /yarn.lock
20
+
21
+ # Environment files
22
+ /.env
23
+
24
+ # TypeScript cache files
25
+ * .tsbuildinfo
26
+
27
+ # Debug log files
28
+ npm-debug.log *
29
+ yarn-debug.log *
30
+ yarn-error.log *
31
+
32
+ # IDE directories and files
33
+ /.idea /
34
+ /.vscode /
35
+ /project-folder /.idea /
36
+ /project-folder /.vscode /
37
+
38
+ # OS-specific files
39
+ .DS_Store
40
+ Thumbs.db
41
+
42
+ # Temporary files
43
+ * .bak
44
+ * .swp
45
+ * ~
46
+
47
+ # Build artifacts from Angular CLI
48
+ /.angular-cli.json
49
+ .angular /
50
+
51
+ # Angular CLI cache
52
+ /.ng /
53
+
54
+ # VS Code settings
55
+ .vscode /settings.json
56
+
57
+ # System files
58
+ * .sublime-workspace
59
+ * .sublime-project
60
+
61
+ # Logs
62
+ /logs
63
+ /debug.log
64
+ * .log
65
+
66
+ # Temporary files from editor or operating system
67
+ * ~.nfs *
68
+
69
+ # JetBrains IDE (e.g., WebStorm) files
70
+ /.idea /
71
+
72
+ # End-to-end testing
73
+ /cypress /
74
+
75
+ # Firebase hosting files
76
+ firebase.json
77
+
78
+ # Jest snapshot files
79
+ * .snap
80
+
81
+ # Webpack config
82
+ webpack.config.js
83
+ webpack.prod.js
84
+ webpack.dev.js
85
+
86
+ # Coverage output directory
87
+ /coverage /
88
+
89
+ # Test files
90
+ * .spec.ts
91
+ * .test.ts
92
+
93
+ # Miscellaneous
94
+ /.angular /
You can’t perform that action at this time.
0 commit comments