forked from rongcloud/rongcloud-web-im-sdk-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
69 lines (69 loc) · 2.25 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
{
"version": "1.5.3",
"compilerOptions": {
"target": "es5",
"module": "umd",
"declaration": false,
"noImplicitAny": true,
"removeComments": true,
"isolatedModules": false,
"jsx": "react",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noLib": false,
"preserveConstEnums": true,
"suppressImplicitAnyIndexErrors": false,
"sourceMap": true,
"rootDir": "./src",
"out": "./dist/RongIMLib.js"
},
"filesGlob": [
"./dist/*.ts",
"./**/*.ts",
"./**/*.tsx",
"!./node_modules/**/*"
],
"files": [
"./src/callback.ts",
"./src/callbackImpl.ts",
"./src/connect_client.ts",
"./src/dts/util.d.ts",
"./src/enum.ts",
"./src/extensions/amr.ts",
"./src/extensions/emoji.ts",
"./src/extensions/image_uploader.ts",
"./src/imclient.ts",
"./src/internal/http.ts",
"./src/internal/navi.ts",
"./src/internal/rmtp/signalling.ts",
"./src/internal/rmtp/stream.ts",
"./src/internal/storage/cookie.ts",
"./src/internal/storage/indexdb.ts",
"./src/internal/storage/localstorage.ts",
"./src/internal/transportation.ts",
"./src/internal/transportation/websocket.ts",
"./src/internal/transportation/xhrpolling.ts",
"./src/internal/util.ts",
"./src/listener.ts",
"./src/message_base.ts",
"./src/message_misc.ts",
"./src/message_notification.ts",
"./src/message_primary.ts",
"./src/model.ts",
"./src/providers/data_access_provider.ts",
"./src/providers/data_access/indexdb.ts",
"./src/providers/data_access/localstorage.ts",
"./src/providers/notification_provider.ts",
"./src/providers/notification/webnotification.ts",
"./src/providers/storage_provider.ts",
"./src/providers/storage/cookie.ts",
"./src/providers/storage/localstorage.ts",
"./src/util/feature_detector.ts",
"./src/util/feature_patcher.ts",
"./src/util/http_client.ts",
"./src/util/script_loader.ts"
],
"compileOnSave": false,
"buildOnSave": false,
"exclude": []
}