-
Notifications
You must be signed in to change notification settings - Fork 40
/
tsconfig.base.json
126 lines (126 loc) · 3.82 KB
/
tsconfig.base.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noEmitHelpers": false,
"jsx": "react",
"target": "ES2020",
"module": "ESNext",
"lib": [
"ESNext",
"dom"
],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"plugins": [
{
"transform": "@nativescript/webpack/dist/transformers/NativeClass",
"type": "raw"
}
],
"paths": {
"@demo/shared": [
"tools/demo/index.ts"
],
"@nstudio/nativescript-airship": [
"packages/nativescript-airship/index.d.ts"
],
"@nstudio/nativescript-airship-adm": [
"packages/nativescript-airship-adm/index.ts"
],
"@nstudio/nativescript-airship-fcm": [
"packages/nativescript-airship-fcm/index.ts"
],
"@nstudio/nativescript-airship-hms": [
"packages/nativescript-airship-hms/index.ts"
],
"@nstudio/nativescript-barcodescanner": [
"packages/nativescript-barcodescanner/index.d.ts"
],
"@nstudio/nativescript-blur": [
"packages/nativescript-blur/index.d.ts"
],
"@nstudio/nativescript-camera-plus": [
"packages/nativescript-camera-plus/index.d.ts"
],
"@nstudio/nativescript-camera-plus/angular": [
"packages/nativescript-camera-plus/angular/index.ts"
],
"@nstudio/nativescript-cardview": [
"packages/nativescript-cardview/index.d.ts"
],
"@nstudio/nativescript-carousel": [
"packages/nativescript-carousel/index.d.ts"
],
"@nstudio/nativescript-checkbox": [
"packages/nativescript-checkbox/index.d.ts"
],
"@nstudio/nativescript-checkbox/angular": [
"packages/nativescript-checkbox/angular/index.ts"
],
"@nstudio/nativescript-dynatrace": [
"packages/nativescript-dynatrace/index.d.ts"
],
"@nstudio/nativescript-embrace": [
"packages/nativescript-embrace/index.d.ts"
],
"@nstudio/nativescript-exoplayer": [
"packages/nativescript-exoplayer/index.d.ts"
],
"@nstudio/nativescript-fancyalert": [
"packages/nativescript-fancyalert/index.d.ts"
],
"@nstudio/nativescript-filterable-listpicker": [
"packages/nativescript-filterable-listpicker/index.d.ts"
],
"@nstudio/nativescript-freshchat": [
"packages/nativescript-freshchat/index.d.ts"
],
"@nstudio/nativescript-input-mask": [
"packages/nativescript-input-mask/index.d.ts"
],
"@nstudio/nativescript-intercom": [
"packages/nativescript-intercom/index.d.ts"
],
"@nstudio/nativescript-loading-indicator": [
"packages/nativescript-loading-indicator/index.d.ts"
],
"@nstudio/nativescript-onfido": [
"packages/nativescript-onfido/index.d.ts"
],
"@nstudio/nativescript-persona": [
"packages/nativescript-persona/index.d.ts"
],
"@nstudio/nativescript-plaid": [
"packages/nativescript-plaid/index.d.ts"
],
"@nstudio/nativescript-qr": [
"packages/nativescript-qr/index.d.ts"
],
"@nstudio/nativescript-tracking-transparency": [
"packages/nativescript-tracking-transparency/index.d.ts"
],
"@nstudio/nativescript-walletconnect": [
"packages/nativescript-walletconnect/index.d.ts"
],
"@nstudio/nativescript-appcues": [
"packages/nativescript-appcues/index.d.ts"
],
"@nstudio/nativescript-aptabase": [
"packages/nativescript-aptabase/index.d.ts"
],
"@nstudio/nativescript-web-server": [
"packages/nativescript-web-server/index.d.ts"
]
}
},
"exclude": [
"node_modules",
"tmp"
]
}