forked from pusher/pusher-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
32 lines (32 loc) · 888 Bytes
/
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
{
"compilerOptions": {
"module": "commonjs",
"outDir": "lib/",
"declaration": false,
"sourceMap": true,
"target": "es3",
"removeComments": true,
"moduleResolution": "node"
},
"files": [
"src/core/pusher.ts",
"src/d.ts/global/global.d.ts",
"src/d.ts/faye-websocket/faye-websocket.d.ts",
"src/d.ts/xmlhttprequest/xmlhttprequest.d.ts",
"src/d.ts/window/websocket.d.ts",
"src/d.ts/window/xmlhttprequest.d.ts",
"src/d.ts/window/sockjs.d.ts",
"src/d.ts/window/events.d.ts",
"src/d.ts/react-native/react-native.d.ts",
"src/d.ts/module/module.d.ts",
"src/d.ts/fetch/promise.d.ts",
"src/d.ts/fetch/fetch.d.ts",
"src/runtimes/web/net_info.ts",
"src/runtimes/react-native/net_info.ts",
"src/d.ts/tweetnacl-util/index.d.ts",
"src/d.ts/tweetnacl/index.d.ts"
],
"exclude": [
"node_modules"
]
}