-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
44 lines (44 loc) · 1.11 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
{
"compilerOptions": {
"declaration": true,
"module": "commonjs",
"moduleResolution": "node",
"noImplicitAny": true,
"outDir": "lib/",
"preserveConstEnums": true,
"removeComments": true,
"target": "es5",
"experimentalDecorators": true
},
"filesGlob": [
"typings/main.d.ts",
"!./node_modules/**/*.ts",
"src/**/*.ts"
],
"files": [
"src/api/Api.ts",
"src/api/config.ts",
"src/clients/Apps.ts",
"src/clients/Auth.ts",
"src/clients/Base.ts",
"src/clients/Billing.ts",
"src/clients/File.ts",
"src/clients/Project.ts",
"src/clients/Task.ts",
"src/clients/User.ts",
"src/config.ts",
"src/decorators/Common.ts",
"src/interfaces/AppsInterfaces.ts",
"src/interfaces/BillingInterfaces.ts",
"src/interfaces/ClientInterfaces.ts",
"src/interfaces/FileInterfaces.ts",
"src/interfaces/ProjectInterfaces.ts",
"src/interfaces/SBGInterfaces.ts",
"src/interfaces/TaskInterfaces.ts",
"src/interfaces/UserInterfaces.ts",
"src/sbg.ts",
"src/util/Request.ts",
"src/util/Response.ts",
"src/util/Util.ts"
]
}