Skip to content

Commit 26a861f

Browse files
Initial commit.
1 parent 5405dfe commit 26a861f

22 files changed

+1913
-0
lines changed

.browserslistrc

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
2+
# For additional information regarding the format and rule options, please see:
3+
# https://github.com/browserslist/browserslist#queries
4+
5+
# For the full list of supported browsers by the Angular framework, please see:
6+
# https://angular.io/guide/browser-support
7+
8+
# You can see what browsers were selected by your queries by running:
9+
# npx browserslist
10+
11+
last 1 Chrome version
12+
last 1 Firefox version
13+
last 2 Edge major versions
14+
last 2 Safari major versions
15+
last 2 iOS major versions
16+
Firefox ESR

.gitignore

Lines changed: 135 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,135 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# compiled output
4+
/dist
5+
/tmp
6+
/out-tsc
7+
# Only exists if Bazel was run
8+
/bazel-out
9+
10+
# profiling files
11+
chrome-profiler-events*.json
12+
speed-measure-plugin*.json
13+
14+
# IDEs and editors
15+
/.idea
16+
.project
17+
.classpath
18+
.c9/
19+
*.launch
20+
.settings/
21+
*.sublime-workspace
22+
23+
# IDE - VSCode
24+
.vscode/*
25+
!.vscode/settings.json
26+
!.vscode/tasks.json
27+
!.vscode/launch.json
28+
!.vscode/extensions.json
29+
.history/*
30+
31+
# misc
32+
/.sass-cache
33+
/connect.lock
34+
35+
# Logs
36+
/libpeerconnection.log
37+
logs
38+
*.log
39+
npm-debug.log*
40+
testem.log
41+
yarn-debug.log*
42+
yarn-error.log*
43+
44+
# Runtime data
45+
pids
46+
*.pid
47+
*.seed
48+
*.pid.lock
49+
50+
# Directory for instrumented libs generated by jscoverage/JSCover
51+
lib-cov
52+
53+
# Coverage directory used by tools like istanbul
54+
coverage
55+
56+
# nyc test coverage
57+
.nyc_output
58+
59+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
60+
.grunt
61+
62+
# Bower dependency directory (https://bower.io/)
63+
bower_components
64+
65+
# node-waf configuration
66+
.lock-wscript
67+
68+
# Compiled binary addons (https://nodejs.org/api/addons.html)
69+
build/Release
70+
71+
# Dependency directories
72+
node_modules/
73+
jspm_packages/
74+
75+
# TypeScript v1 declaration files
76+
typings/
77+
78+
# Optional npm cache directory
79+
.npm
80+
81+
# Optional eslint cache
82+
.eslintcache
83+
84+
# Optional REPL history
85+
.node_repl_history
86+
87+
# Output of 'npm pack'
88+
*.tgz
89+
90+
# Yarn Integrity file
91+
.yarn-integrity
92+
93+
# dotenv environment variables file
94+
.env
95+
96+
# parcel-bundler cache (https://parceljs.org/)
97+
.cache
98+
99+
# next.js build output
100+
.next
101+
102+
# nuxt.js build output
103+
.nuxt
104+
105+
# vuepress build output
106+
.vuepress/dist
107+
108+
# Serverless directories
109+
.serverless/
110+
111+
# FuseBox cache
112+
.fusebox/
113+
114+
#DynamoDB Local files
115+
.dynamodb/
116+
117+
# OS generated files
118+
Thumbs.db
119+
.DS_Store
120+
121+
# Ignored files
122+
/.vscode/*
123+
*.code-workspace
124+
!.vscode/tasks.json
125+
build
126+
dist
127+
graphics
128+
fonts
129+
*.ignore*
130+
131+
# demos
132+
demo
133+
134+
# compodoc documentation
135+
documentation

0 commit comments

Comments
 (0)