Skip to content
This repository was archived by the owner on May 7, 2021. It is now read-only.

Commit fa24163

Browse files
committed
initial commit
0 parents  commit fa24163

File tree

1 file changed

+71
-0
lines changed

1 file changed

+71
-0
lines changed

.gitignore

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
# @AngularClass
2+
3+
# compiled output
4+
/dist
5+
/dist-watch
6+
# Logs
7+
logs
8+
*.log
9+
10+
# Runtime data
11+
pids
12+
*.pid
13+
*.seed
14+
15+
# Directory for instrumented libs generated by jscoverage/JSCover
16+
lib-cov
17+
18+
# Coverage directory used by tools like istanbul
19+
coverage
20+
21+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
22+
.grunt
23+
24+
# Compiled binary addons (http://nodejs.org/api/addons.html)
25+
build/Release
26+
27+
# Users Environment Variables
28+
.lock-wscript
29+
30+
# OS generated files #
31+
.DS_Store
32+
ehthumbs.db
33+
Icon?
34+
Thumbs.db
35+
36+
# Node Files #
37+
/node_modules
38+
/bower_components
39+
npm-debug.log
40+
41+
# Coverage #
42+
/coverage/
43+
44+
# Typing #
45+
/src/typings/tsd/
46+
/typings/
47+
/tsd_typings/
48+
49+
# Dist #
50+
/dist
51+
/public/__build__/
52+
/src/*/__build__/
53+
/__build__/**
54+
/public/dist/
55+
/src/*/dist/
56+
/dist/**
57+
/.awcache
58+
.webpack.json
59+
package-lock.json
60+
61+
# Doc #
62+
/doc/
63+
64+
# IDE #
65+
.idea/
66+
*.swp
67+
.vscode/
68+
69+
*.ngsummary.json
70+
dist-demo
71+
.history

0 commit comments

Comments
 (0)