-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
.gitignore
50 lines (38 loc) · 824 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
47
48
49
50
node_modules
# ide stuffs
.idea
# i am un-ignoring this to make sure that vscode users get the right typescript version
# picked for them. Future typescript design decisions cause phantom type errors that
# don't exist on the version we actually compile for.
#
# .vscode
.vs
# PNPM noise
.pnpm-debug.log
.pnpm-store
# Compiled output
js
# Ignore all .env's apart from example.env
.env
*.env
!example.env
# Ignore all conf.json5's apart from example.conf.json5
conf.json5
*.conf.json5
!example.conf.json5
# Redis dumps these files into PWD if it exits unexpectedly
*.rdb
# Don't want to check in logs
logs
# Anything about BFG stuff we shredded
...bfg-report
# Test coverages
.nyc_output
coverage
out.*
failed-tests.log
.tsbuildinfo
# legacy bootstrap flag
I_HAVE_BOOTSTRAPPED_OK
# new bootstrap flag
BOOTSTRAP_OK