-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathtsconfig.json
49 lines (49 loc) · 1.5 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
{
"version": "1.5.0-alpha",
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"declaration": false,
"noImplicitAny": false,
"removeComments": true,
"noLib": false,
"preserveConstEnums": true,
"suppressImplicitAnyIndexErrors": true
},
"filesGlob": [
"./**/*.ts",
"!./node_modules/**/*.ts"
],
"files": [
"./chatWorker/index.ts",
"./chatWorker/lib/middleware.ts",
"./chatWorker/lib/sticky.ts",
"./chatWorker/lib/store.ts",
"./chatWorker/lib/workerManager.ts",
"./chatWorker/lib/WSHandler.ts",
"./client/chatup.ts",
"./client/lib/helpers.ts",
"./common/logger.ts",
"./dispatcher/index.ts",
"./dispatcher/lib/ban.ts",
"./dispatcher/lib/dispatchHandler.ts",
"./dispatcher/lib/messagesHistory.ts",
"./dispatcher/lib/postMessage.ts",
"./dispatcher/lib/stats.ts",
"./dispatcher/lib/workersManager.ts",
"./index.ts",
"./typings/debug/debug.d.ts",
"./typings/es6-promise/es6-promise.d.ts",
"./typings/express/express.d.ts",
"./typings/jsonwebtoken/jsonwebtoken.d.ts",
"./typings/lodash/lodash.d.ts",
"./typings/node/node.d.ts",
"./typings/redis/redis.d.ts",
"./typings/socket.io/socket.io.d.ts",
"./typings/superagent/superagent.d.ts",
"./typings/tsd.d.ts"
],
"atom": {
"rewriteTsconfig": true
}
}