-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
46 lines (36 loc) · 808 Bytes
/
.gitignore
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
# See http://help.github.com/ignore-files/ for more about ignoring files.
# Do not include the application binary.
# The binary must be built on the deployment playform.
bin/todo
# The run script should be dynamically generated by bin/config.sh
bin/run.sh
# non native libraries
pkg/*
src/*
# compiled output
web/todo/dist
web/todo/tmp
web/todo/out-tsc
# Only exists if Bazel was run
web/todo/bazel-out
# dependencies
web/todo/node_modules
# profiling files
web/todo/chrome-profiler-events*.json
web/todo/speed-measure-plugin*.json
# IDEs and editors
.idea
# IDE - VSCode
.vscode
# misc
web/todo/.sass-cache
web/todo/connect.lock
web/todo/coverage
web/todo/libpeerconnection.log
web/todo/npm-debug.log
web/todo/yarn-error.log
web/todo/testem.log
web/todo/typings
# System Files
.DS_Store
Thumbs.db