-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
66 lines (66 loc) · 2.32 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
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"outDir": "bin",
"declaration": false,
"noImplicitAny": false,
"removeComments": false,
"noLib": false
},
"filesGlob": [
"./**/*.ts",
"!./node_modules/**/*.ts"
],
"files": [
"./src/api/ApiHelpers.ts",
"./src/api/StoredData.d.ts",
"./src/api/VineApi.ts",
"./src/api/api-declarations/ApiResponse.d.ts",
"./src/api/api-declarations/AuthenticateData.d.ts",
"./src/api/api-declarations/PaginatedResponse.d.ts",
"./src/api/api-declarations/UserData.d.ts",
"./src/api/api-declarations/UserSearchData.d.ts",
"./src/api/api-declarations/VideoRecord.d.ts",
"./src/draw-plots/d3-graphs.ts",
"./src/draw-plots/graph-data.d.ts",
"./src/draw-plots/index.ts",
"./src/force-graph/index.ts",
"./src/helpers/arrayHelper.ts",
"./src/helpers/communicator.ts",
"./src/helpers/expressInit.ts",
"./src/helpers/logger.ts",
"./src/index.ts",
"./src/master/JobState.ts",
"./src/master/JobType.ts",
"./src/master/JobTypes.ts",
"./src/master/index.ts",
"./src/master/job.ts",
"./src/parse-data/index.ts",
"./src/parse-data/process-mentions.ts",
"./src/router/index.ts",
"./src/simple-worker/get-vines-users.ts",
"./src/simple-worker/index.ts",
"./src/simple-worker/job-store.ts",
"./src/simple-worker/local-storage.ts",
"./src/simple-worker/users-vines.d.ts",
"./src/worker/index.ts",
"./src/worker/worker-profiler.ts",
"./test/test-arrayHelper.ts",
"./test/test-job.ts",
"./typings/body-parser/body-parser.d.ts",
"./typings/chai-as-promised/chai-as-promised.d.ts",
"./typings/chai/chai.d.ts",
"./typings/d3/d3.d.ts",
"./typings/es6-promise/es6-promise.d.ts",
"./typings/express/express.d.ts",
"./typings/form-data/form-data.d.ts",
"./typings/mkdirp/mkdirp.d.ts",
"./typings/mocha/mocha.d.ts",
"./typings/node/node.d.ts",
"./typings/request/request.d.ts",
"./typings/sinon-chai/sinon-chai.d.ts",
"./typings/sinon/sinon.d.ts",
"./typings/tsd.d.ts"
]
}