-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtsconfig.json
85 lines (85 loc) · 2.04 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"compileOnSave": false,
"include": [
"src/**/*.ts", "src/app/services/walletconnect/.walletconnect.v1.service.ts",
//"environment/set_env.ts",
//"scripts/*.ts"
],
"exclude": [
"node_modules",
"plugins",
"platforms",
"origin_platforms",
"src/app/easybridge"
],
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"resolveJsonModule": true,
"module": "esnext",
"target": "ES2020",
"skipLibCheck": true,
"typeRoots": [
"node_modules/@types",
],
"types": [
"node",
"cordova",
"@elastosfoundation/elastos-cordova-plugin-did",
"elastos-essentials-plugin-intent",
"elastos-essentials-plugin-passwordmanager",
"elastos-essentials-plugin-wallet",
"elastos-essentials-plugin-internal",
"elastos-essentials-plugin-dappbrowser",
"cordova-plugin-camera",
"cordova-plugin-ble-central",
"cordova-plugin-lottie-splashscreen"
],
"lib": [
"ES2020.BigInt",
"dom"
],
"paths": {
"crypto": [
"./node_modules/crypto-browserify"
],
"stream": [
"./node_modules/stream-browserify"
],
"path": [
"./node_modules/path-browserify"
],
"http": [
"./node_modules/agent-base"
],
"https": [
"./node_modules/agent-base"
],
"elliptic": [
"./node_modules/elliptic"
],
"bn.js": [
"./node_modules/bn.js"
],
"@elastosfoundation/elastos-connectivity-sdk-js": [
"./node_modules/@elastosfoundation/elastos-connectivity-sdk-js"
],
"web3": [
"./node_modules/web3/dist/web3.min.js"
],
"querystring":[
"./node_modules/querystring-es3"
],
"zlib": [
"./node_modules/browserify-zlib"
],
}
}
}