This repository has been archived by the owner on Mar 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
236 lines (236 loc) · 9.17 KB
/
tsconfig.json
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
{
"compilerOptions": {
"noEmitOnError": false,
"noImplicitAny": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"sourceMap": false,
"target": "es6",
"module": "commonjs",
"removeComments": true,
"noLib": true,
"outDir": "built",
"rootDir": "src"
},
"compileOnSave": false,
"atom": {
"rewriteTsconfig": true
},
"filesGlob": [
"./node_modules/typescript/lib/lib.es6.d.ts",
"./typings/bundle.d.ts",
"./src/**/*.ts"
],
"files": [
"./node_modules/typescript/lib/lib.es6.d.ts",
"./typings/bundle.d.ts",
"./src/api-handler.ts",
"./src/argv.ts",
"./src/authenticate.ts",
"./src/check-dependencies.ts",
"./src/config.ts",
"./src/core/add-file-to-album.ts",
"./src/core/create-notification.ts",
"./src/core/escape-regexp.ts",
"./src/core/extract-hashtags.ts",
"./src/core/extract-mentions.ts",
"./src/core/get-album-file.ts",
"./src/core/get-post-likers.ts",
"./src/core/lookup-follow-state.ts",
"./src/core/read-post.ts",
"./src/core/read-talk-message.ts",
"./src/core/register-hashtags.ts",
"./src/core/save-post-mentions.ts",
"./src/core/serialize-notification.ts",
"./src/core/serialize-post.ts",
"./src/core/serialize-posts.ts",
"./src/core/serialize-talk-message.ts",
"./src/core/serialize-user.ts",
"./src/db/db.ts",
"./src/db/interfaces.ts",
"./src/db/schemas/album-file.ts",
"./src/db/schemas/album-folder.ts",
"./src/db/schemas/album-tag.ts",
"./src/db/schemas/application.ts",
"./src/db/schemas/bbs-post.ts",
"./src/db/schemas/bbs-topic.ts",
"./src/db/schemas/bbs-watching.ts",
"./src/db/schemas/hashtag.ts",
"./src/db/schemas/notification.ts",
"./src/db/schemas/post-like.ts",
"./src/db/schemas/post-mention.ts",
"./src/db/schemas/post.ts",
"./src/db/schemas/talk-group-invitation.ts",
"./src/db/schemas/talk-group.ts",
"./src/db/schemas/talk-history.ts",
"./src/db/schemas/talk-message.ts",
"./src/db/schemas/user-following.ts",
"./src/db/schemas/user-key.ts",
"./src/db/schemas/user.ts",
"./src/endpoints.ts",
"./src/endpoints/account/avatar/update.ts",
"./src/endpoints/account/banner/update.ts",
"./src/endpoints/account/comment/update.ts",
"./src/endpoints/account/create.ts",
"./src/endpoints/account/location/update.ts",
"./src/endpoints/account/name/update.ts",
"./src/endpoints/account/show.ts",
"./src/endpoints/account/tags/update.ts",
"./src/endpoints/account/url/update.ts",
"./src/endpoints/album/files/add-tag.ts",
"./src/endpoints/album/files/delete.ts",
"./src/endpoints/album/files/find-by-tag.ts",
"./src/endpoints/album/files/list.ts",
"./src/endpoints/album/files/move.ts",
"./src/endpoints/album/files/remove-tag.ts",
"./src/endpoints/album/files/rename.ts",
"./src/endpoints/album/files/show.ts",
"./src/endpoints/album/files/stream.ts",
"./src/endpoints/album/files/update-tag.ts",
"./src/endpoints/album/files/upload.ts",
"./src/endpoints/album/folders/create.ts",
"./src/endpoints/album/folders/delete.ts",
"./src/endpoints/album/folders/list.ts",
"./src/endpoints/album/folders/move.ts",
"./src/endpoints/album/folders/rename.ts",
"./src/endpoints/album/folders/show.ts",
"./src/endpoints/album/folders/update-color.ts",
"./src/endpoints/album/tags/create.ts",
"./src/endpoints/album/tags/delete.ts",
"./src/endpoints/album/tags/list.ts",
"./src/endpoints/album/tags/recolor.ts",
"./src/endpoints/album/tags/rename.ts",
"./src/endpoints/bbs/posts/create.ts",
"./src/endpoints/bbs/topics/create.ts",
"./src/endpoints/hashtags/search.ts",
"./src/endpoints/hashtags/trend/show.ts",
"./src/endpoints/login.ts",
"./src/endpoints/notifications/delete-all.ts",
"./src/endpoints/notifications/show.ts",
"./src/endpoints/notifications/timeline.ts",
"./src/endpoints/notifications/unread/count.ts",
"./src/endpoints/posts/create.ts",
"./src/endpoints/posts/like.ts",
"./src/endpoints/posts/likes/show.ts",
"./src/endpoints/posts/mentions/delete-all.ts",
"./src/endpoints/posts/mentions/show.ts",
"./src/endpoints/posts/mentions/unread/count.ts",
"./src/endpoints/posts/replies/show.ts",
"./src/endpoints/posts/reply.ts",
"./src/endpoints/posts/repost.ts",
"./src/endpoints/posts/reposts/show.ts",
"./src/endpoints/posts/search.ts",
"./src/endpoints/posts/show.ts",
"./src/endpoints/posts/talk/show.ts",
"./src/endpoints/posts/timeline.ts",
"./src/endpoints/posts/timeline/unread/count.ts",
"./src/endpoints/posts/user-timeline.ts",
"./src/endpoints/screenname/available.ts",
"./src/endpoints/talks/group/create.ts",
"./src/endpoints/talks/group/invitations/accept.ts",
"./src/endpoints/talks/group/invitations/decline.ts",
"./src/endpoints/talks/group/invitations/show.ts",
"./src/endpoints/talks/group/members/invite.ts",
"./src/endpoints/talks/group/show.ts",
"./src/endpoints/talks/history/show.ts",
"./src/endpoints/talks/messages/delete.ts",
"./src/endpoints/talks/messages/read.ts",
"./src/endpoints/talks/messages/say.ts",
"./src/endpoints/talks/messages/show.ts",
"./src/endpoints/talks/messages/stream.ts",
"./src/endpoints/talks/messages/unread/count.ts",
"./src/endpoints/users/follow.ts",
"./src/endpoints/users/followers.ts",
"./src/endpoints/users/following.ts",
"./src/endpoints/users/recommendations.ts",
"./src/endpoints/users/search-by-screen-name.ts",
"./src/endpoints/users/search.ts",
"./src/endpoints/users/show.ts",
"./src/endpoints/users/unfollow.ts",
"./src/event.ts",
"./src/main.ts",
"./src/rest-handlers/account/avatar/update.ts",
"./src/rest-handlers/account/banner/update.ts",
"./src/rest-handlers/account/comment/update.ts",
"./src/rest-handlers/account/create.ts",
"./src/rest-handlers/account/location/update.ts",
"./src/rest-handlers/account/name/update.ts",
"./src/rest-handlers/account/show.ts",
"./src/rest-handlers/account/tags/update.ts",
"./src/rest-handlers/account/url/update.ts",
"./src/rest-handlers/album/files/add-tag.ts",
"./src/rest-handlers/album/files/delete.ts",
"./src/rest-handlers/album/files/find-by-tag.ts",
"./src/rest-handlers/album/files/list.ts",
"./src/rest-handlers/album/files/move.ts",
"./src/rest-handlers/album/files/remove-tag.ts",
"./src/rest-handlers/album/files/rename.ts",
"./src/rest-handlers/album/files/show.ts",
"./src/rest-handlers/album/files/stream.ts",
"./src/rest-handlers/album/files/update-tag.ts",
"./src/rest-handlers/album/files/upload.ts",
"./src/rest-handlers/album/folders/create.ts",
"./src/rest-handlers/album/folders/delete.ts",
"./src/rest-handlers/album/folders/list.ts",
"./src/rest-handlers/album/folders/move.ts",
"./src/rest-handlers/album/folders/rename.ts",
"./src/rest-handlers/album/folders/show.ts",
"./src/rest-handlers/album/folders/update-color.ts",
"./src/rest-handlers/album/tags/create.ts",
"./src/rest-handlers/album/tags/delete.ts",
"./src/rest-handlers/album/tags/list.ts",
"./src/rest-handlers/album/tags/recolor.ts",
"./src/rest-handlers/album/tags/rename.ts",
"./src/rest-handlers/bbs/topics/create.ts",
"./src/rest-handlers/hashtags/search.ts",
"./src/rest-handlers/hashtags/trend/show.ts",
"./src/rest-handlers/login.ts",
"./src/rest-handlers/notifications/delete-all.ts",
"./src/rest-handlers/notifications/show.ts",
"./src/rest-handlers/notifications/timeline.ts",
"./src/rest-handlers/notifications/unread/count.ts",
"./src/rest-handlers/posts/create.ts",
"./src/rest-handlers/posts/like.ts",
"./src/rest-handlers/posts/likes/show.ts",
"./src/rest-handlers/posts/mentions/delete-all.ts",
"./src/rest-handlers/posts/mentions/show.ts",
"./src/rest-handlers/posts/mentions/unread/count.ts",
"./src/rest-handlers/posts/replies/show.ts",
"./src/rest-handlers/posts/reply.ts",
"./src/rest-handlers/posts/repost.ts",
"./src/rest-handlers/posts/reposts/show.ts",
"./src/rest-handlers/posts/search.ts",
"./src/rest-handlers/posts/show.ts",
"./src/rest-handlers/posts/talk/show.ts",
"./src/rest-handlers/posts/timeline.ts",
"./src/rest-handlers/posts/timeline/unread/count.ts",
"./src/rest-handlers/posts/user-timeline.ts",
"./src/rest-handlers/screenname/available.ts",
"./src/rest-handlers/talks/group/create.ts",
"./src/rest-handlers/talks/group/invitations/accept.ts",
"./src/rest-handlers/talks/group/invitations/decline.ts",
"./src/rest-handlers/talks/group/invitations/show.ts",
"./src/rest-handlers/talks/group/members/invite.ts",
"./src/rest-handlers/talks/group/show.ts",
"./src/rest-handlers/talks/history/show.ts",
"./src/rest-handlers/talks/messages/delete.ts",
"./src/rest-handlers/talks/messages/read.ts",
"./src/rest-handlers/talks/messages/say.ts",
"./src/rest-handlers/talks/messages/show.ts",
"./src/rest-handlers/talks/messages/stream.ts",
"./src/rest-handlers/talks/messages/unread/count.ts",
"./src/rest-handlers/users/follow.ts",
"./src/rest-handlers/users/followers.ts",
"./src/rest-handlers/users/following.ts",
"./src/rest-handlers/users/recommendations.ts",
"./src/rest-handlers/users/search-by-screen-name.ts",
"./src/rest-handlers/users/search.ts",
"./src/rest-handlers/users/show.ts",
"./src/rest-handlers/users/unfollow.ts",
"./src/server.ts",
"./src/spec/album-file.ts",
"./src/spec/album-tag.ts",
"./src/spec/talk-group.ts",
"./src/spec/user.ts"
]
}