@circle-fin/w3s-pw-react-native-sdk 1.1.1 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/build.gradle +2 -2
- package/android/src/main/java/com/circlefin/programmablewalletrnsdk/BridgeHelper.kt +11 -9
- package/circlefin-w3s-pw-react-native-sdk.podspec +1 -1
- package/lib/commonjs/types.js +12 -0
- package/lib/commonjs/types.js.map +1 -1
- package/lib/module/types.js +12 -0
- package/lib/module/types.js.map +1 -1
- package/lib/typescript/src/types.d.ts +2 -1
- package/lib/typescript/src/types.d.ts.map +1 -1
- package/package.json +15 -15
- package/src/types.ts +1 -0
- package/lib/commonjs/tsconfig.build.json +0 -109
- package/lib/module/tsconfig.build.json +0 -109
- package/src/tsconfig.build.json +0 -109
package/android/build.gradle
CHANGED
|
@@ -24,7 +24,7 @@ buildscript {
|
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
dependencies {
|
|
27
|
-
classpath "com.android.tools.build:gradle:
|
|
27
|
+
classpath "com.android.tools.build:gradle:8.5.0"
|
|
28
28
|
// noinspection DifferentKotlinGradleVersion
|
|
29
29
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
30
30
|
}
|
|
@@ -126,7 +126,7 @@ dependencies {
|
|
|
126
126
|
//noinspection GradleDynamicVersion
|
|
127
127
|
implementation "com.facebook.react:react-native:+"
|
|
128
128
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
129
|
-
implementation "circle.programmablewallet:sdk:1.0.
|
|
129
|
+
implementation "circle.programmablewallet:sdk:1.0.1102"
|
|
130
130
|
implementation 'com.github.bumptech.glide:glide:4.14.2'
|
|
131
131
|
}
|
|
132
132
|
|
|
@@ -377,15 +377,17 @@ object BridgeHelper {
|
|
|
377
377
|
val array = arrayOfNulls<SecurityQuestion>(rnArray.size())
|
|
378
378
|
for (i in 0 until rnArray.size()) {
|
|
379
379
|
val readableMap = rnArray.getMap(i)
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
380
|
+
if (readableMap != null) {
|
|
381
|
+
val inputType = safeGetString(readableMap, "inputType")
|
|
382
|
+
val title = safeGetString(readableMap, "title") ?: ""
|
|
383
|
+
if (SecurityQuestion.InputType.datePicker.name != inputType) {
|
|
384
|
+
array[i] = SecurityQuestion(title)
|
|
385
|
+
} else {
|
|
386
|
+
array[i] = SecurityQuestion(
|
|
387
|
+
title,
|
|
388
|
+
SecurityQuestion.InputType.datePicker
|
|
389
|
+
)
|
|
390
|
+
}
|
|
389
391
|
}
|
|
390
392
|
}
|
|
391
393
|
if (BuildConfig.DEBUG) {
|
|
@@ -15,7 +15,7 @@ Pod::Spec.new do |s|
|
|
|
15
15
|
s.source = { :git => package["repository"], :tag => "#{s.version}" }
|
|
16
16
|
|
|
17
17
|
s.source_files = "ios/**/*.{h,m,mm,swift}"
|
|
18
|
-
s.dependency 'CircleProgrammableWalletSDK_static', '1.1.
|
|
18
|
+
s.dependency 'CircleProgrammableWalletSDK_static', '1.1.9'
|
|
19
19
|
|
|
20
20
|
# Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0.
|
|
21
21
|
# See https://github.com/facebook/react-native/blob/febf6b7f33fdb4904669f99d795eba4c0f95d7bf/scripts/cocoapods/new_architecture.rb#L79.
|
package/lib/commonjs/types.js
CHANGED
|
@@ -66,24 +66,29 @@ let TextKey = exports.TextKey = /*#__PURE__*/function (TextKey) {
|
|
|
66
66
|
TextKey["circlepw_security_questions_answer_hint_input_config"] = "circlepw_security_questions_answer_hint_input_config";
|
|
67
67
|
TextKey["circlepw_security_questions_question_input_config"] = "circlepw_security_questions_question_input_config";
|
|
68
68
|
TextKey["circlepw_security_questions_error_config"] = "circlepw_security_questions_error_config";
|
|
69
|
+
// SelectQuestion
|
|
69
70
|
TextKey["circlepw_select_question_title"] = "circlepw_select_question_title";
|
|
70
71
|
TextKey["circlepw_select_question_item_config"] = "circlepw_select_question_item_config";
|
|
72
|
+
// SecuritySummary
|
|
71
73
|
TextKey["circlepw_security_summary_title"] = "circlepw_security_summary_title";
|
|
72
74
|
TextKey["circlepw_security_summary_question_value_config"] = "circlepw_security_summary_question_value_config";
|
|
73
75
|
TextKey["circlepw_security_summary_answer_value_config"] = "circlepw_security_summary_answer_value_config";
|
|
74
76
|
TextKey["circlepw_security_summary_hint_value_config"] = "circlepw_security_summary_hint_value_config";
|
|
77
|
+
// SecurityConfirm
|
|
75
78
|
TextKey["circlepw_security_confirm_title"] = "circlepw_security_confirm_title";
|
|
76
79
|
TextKey["circlepw_security_confirm_headline"] = "circlepw_security_confirm_headline";
|
|
77
80
|
TextKey["circlepw_security_confirm_input_headline"] = "circlepw_security_confirm_input_headline";
|
|
78
81
|
TextKey["circlepw_security_confirm_input_config"] = "circlepw_security_confirm_input_config";
|
|
79
82
|
TextKey["circlepw_security_confirm_input_placeholder"] = "circlepw_security_confirm_input_placeholder";
|
|
80
83
|
TextKey["circlepw_security_confirm_input_match"] = "circlepw_security_confirm_input_match";
|
|
84
|
+
// RecoverPINCode
|
|
81
85
|
TextKey["circlepw_recover_pincode_answer_input_header"] = "circlepw_recover_pincode_answer_input_header";
|
|
82
86
|
TextKey["circlepw_recover_pincode_answer_input_placeholder"] = "circlepw_recover_pincode_answer_input_placeholder";
|
|
83
87
|
TextKey["circlepw_recover_pincode_input_config"] = "circlepw_recover_pincode_input_config";
|
|
84
88
|
TextKey["circlepw_recover_pincode_answer_hint_config"] = "circlepw_recover_pincode_answer_hint_config";
|
|
85
89
|
TextKey["circlepw_recover_pincode_error_config"] = "circlepw_recover_pincode_error_config";
|
|
86
90
|
TextKey["circlepw_recover_pincode_question_config"] = "circlepw_recover_pincode_question_config";
|
|
91
|
+
// BiometricsAllow
|
|
87
92
|
TextKey["circlepw_pin_biometrics_allow_title"] = "circlepw_pin_biometrics_allow_title";
|
|
88
93
|
TextKey["circlepw_pin_biometrics_allow_subtitle"] = "circlepw_pin_biometrics_allow_subtitle";
|
|
89
94
|
TextKey["circlepw_pin_biometrics_disable"] = "circlepw_pin_biometrics_disable";
|
|
@@ -190,10 +195,12 @@ let ErrorCode = exports.ErrorCode = /*#__PURE__*/function (ErrorCode) {
|
|
|
190
195
|
ErrorCode["invalidPartnerId"] = "13";
|
|
191
196
|
ErrorCode["invalidMessage"] = "14";
|
|
192
197
|
ErrorCode["invalidPhone"] = "15";
|
|
198
|
+
// Common 156001 - 156999,
|
|
193
199
|
ErrorCode["walletIdNotFound"] = "156001";
|
|
194
200
|
ErrorCode["tokenIdNotFound"] = "156002";
|
|
195
201
|
ErrorCode["transactionIdNotFound"] = "156003";
|
|
196
202
|
ErrorCode["walletSetIdNotFound"] = "156004";
|
|
203
|
+
// Transaction related - 155201 - 155499,
|
|
197
204
|
ErrorCode["notEnoughFounds"] = "155201";
|
|
198
205
|
ErrorCode["notEnoughBalance"] = "155202";
|
|
199
206
|
ErrorCode["exceedWithdrawLimit"] = "155203";
|
|
@@ -214,6 +221,7 @@ let ErrorCode = exports.ErrorCode = /*#__PURE__*/function (ErrorCode) {
|
|
|
214
221
|
ErrorCode["invalidDestinationAddress"] = "155218";
|
|
215
222
|
ErrorCode["tokenWalletChainMismatch"] = "155219";
|
|
216
223
|
ErrorCode["wrongAmountsNumber"] = "155220";
|
|
224
|
+
// User related - 155101 - 155199,
|
|
217
225
|
ErrorCode["userAlreadyExisted"] = "155101";
|
|
218
226
|
ErrorCode["userNotFound"] = "155102";
|
|
219
227
|
ErrorCode["userTokenNotFound"] = "155103";
|
|
@@ -234,10 +242,13 @@ let ErrorCode = exports.ErrorCode = /*#__PURE__*/function (ErrorCode) {
|
|
|
234
242
|
ErrorCode["invalidEncryptionKey"] = "155118";
|
|
235
243
|
ErrorCode["userPinLocked"] = "155119";
|
|
236
244
|
ErrorCode["securityAnswersLocked"] = "155120";
|
|
245
|
+
// Wallet- 155501 - 155599,
|
|
237
246
|
ErrorCode["walletIsFrozen"] = "155501";
|
|
238
247
|
ErrorCode["maxWalletLimitReached"] = "155502";
|
|
239
248
|
ErrorCode["walletSetIdMutuallyExclusive"] = "155503";
|
|
240
249
|
ErrorCode["metadataUnmatched"] = "155504";
|
|
250
|
+
// WalletSet - 155601 - 155699,
|
|
251
|
+
// SDK UI - 155701 - 155799,
|
|
241
252
|
ErrorCode["userCanceled"] = "155701";
|
|
242
253
|
ErrorCode["launchUiFailed"] = "155702";
|
|
243
254
|
ErrorCode["pinCodeNotMatched"] = "155703";
|
|
@@ -314,6 +325,7 @@ let ExecuteResultType = exports.ExecuteResultType = /*#__PURE__*/function (Execu
|
|
|
314
325
|
ExecuteResultType["SIGN_TYPEDDATA"] = "SIGN_TYPEDDATA";
|
|
315
326
|
ExecuteResultType["INITIALIZE"] = "INITIALIZE";
|
|
316
327
|
ExecuteResultType["SET_BIOMETRICS_PIN"] = "SET_BIOMETRICS_PIN";
|
|
328
|
+
ExecuteResultType["WALLET_UPGRADE"] = "WALLET_UPGRADE";
|
|
317
329
|
return ExecuteResultType;
|
|
318
330
|
}({});
|
|
319
331
|
let InputType = exports.InputType = /*#__PURE__*/function (InputType) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["TextsKey","exports","IconTextsKey","TextKey","ImageKey","DateFormat","ErrorCode","SecurityQuestion","constructor","title","inputType","IconTextConfig","image","textConfig","TextConfig","text","gradientColorsOrTextColor","font","Array","isArray","gradientColors","textColor","ExecuteResultStatus","ExecuteEvent","ExecuteResultType","InputType","SocialProvider"],"sourceRoot":"../../src","sources":["types.ts"],"mappings":";;;;;;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAAA,IA0DYA,QAAQ,GAAAC,OAAA,CAAAD,QAAA,0BAARA,QAAQ;EAARA,QAAQ;EAARA,QAAQ;EAARA,QAAQ;EAARA,QAAQ;EAARA,QAAQ;EAARA,QAAQ;EAARA,QAAQ;EAAA,OAARA,QAAQ;AAAA;AAAA,IAURE,YAAY,GAAAD,OAAA,CAAAC,YAAA,0BAAZA,YAAY;EAAZA,YAAY;EAAA,OAAZA,YAAY;AAAA;AAAA,IAIZC,OAAO,GAAAF,OAAA,CAAAE,OAAA,0BAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;
|
|
1
|
+
{"version":3,"names":["TextsKey","exports","IconTextsKey","TextKey","ImageKey","DateFormat","ErrorCode","SecurityQuestion","constructor","title","inputType","IconTextConfig","image","textConfig","TextConfig","text","gradientColorsOrTextColor","font","Array","isArray","gradientColors","textColor","ExecuteResultStatus","ExecuteEvent","ExecuteResultType","InputType","SocialProvider"],"sourceRoot":"../../src","sources":["types.ts"],"mappings":"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","ignoreList":[]}
|
package/lib/module/types.js
CHANGED
|
@@ -61,24 +61,29 @@ export let TextKey = /*#__PURE__*/function (TextKey) {
|
|
|
61
61
|
TextKey["circlepw_security_questions_answer_hint_input_config"] = "circlepw_security_questions_answer_hint_input_config";
|
|
62
62
|
TextKey["circlepw_security_questions_question_input_config"] = "circlepw_security_questions_question_input_config";
|
|
63
63
|
TextKey["circlepw_security_questions_error_config"] = "circlepw_security_questions_error_config";
|
|
64
|
+
// SelectQuestion
|
|
64
65
|
TextKey["circlepw_select_question_title"] = "circlepw_select_question_title";
|
|
65
66
|
TextKey["circlepw_select_question_item_config"] = "circlepw_select_question_item_config";
|
|
67
|
+
// SecuritySummary
|
|
66
68
|
TextKey["circlepw_security_summary_title"] = "circlepw_security_summary_title";
|
|
67
69
|
TextKey["circlepw_security_summary_question_value_config"] = "circlepw_security_summary_question_value_config";
|
|
68
70
|
TextKey["circlepw_security_summary_answer_value_config"] = "circlepw_security_summary_answer_value_config";
|
|
69
71
|
TextKey["circlepw_security_summary_hint_value_config"] = "circlepw_security_summary_hint_value_config";
|
|
72
|
+
// SecurityConfirm
|
|
70
73
|
TextKey["circlepw_security_confirm_title"] = "circlepw_security_confirm_title";
|
|
71
74
|
TextKey["circlepw_security_confirm_headline"] = "circlepw_security_confirm_headline";
|
|
72
75
|
TextKey["circlepw_security_confirm_input_headline"] = "circlepw_security_confirm_input_headline";
|
|
73
76
|
TextKey["circlepw_security_confirm_input_config"] = "circlepw_security_confirm_input_config";
|
|
74
77
|
TextKey["circlepw_security_confirm_input_placeholder"] = "circlepw_security_confirm_input_placeholder";
|
|
75
78
|
TextKey["circlepw_security_confirm_input_match"] = "circlepw_security_confirm_input_match";
|
|
79
|
+
// RecoverPINCode
|
|
76
80
|
TextKey["circlepw_recover_pincode_answer_input_header"] = "circlepw_recover_pincode_answer_input_header";
|
|
77
81
|
TextKey["circlepw_recover_pincode_answer_input_placeholder"] = "circlepw_recover_pincode_answer_input_placeholder";
|
|
78
82
|
TextKey["circlepw_recover_pincode_input_config"] = "circlepw_recover_pincode_input_config";
|
|
79
83
|
TextKey["circlepw_recover_pincode_answer_hint_config"] = "circlepw_recover_pincode_answer_hint_config";
|
|
80
84
|
TextKey["circlepw_recover_pincode_error_config"] = "circlepw_recover_pincode_error_config";
|
|
81
85
|
TextKey["circlepw_recover_pincode_question_config"] = "circlepw_recover_pincode_question_config";
|
|
86
|
+
// BiometricsAllow
|
|
82
87
|
TextKey["circlepw_pin_biometrics_allow_title"] = "circlepw_pin_biometrics_allow_title";
|
|
83
88
|
TextKey["circlepw_pin_biometrics_allow_subtitle"] = "circlepw_pin_biometrics_allow_subtitle";
|
|
84
89
|
TextKey["circlepw_pin_biometrics_disable"] = "circlepw_pin_biometrics_disable";
|
|
@@ -185,10 +190,12 @@ export let ErrorCode = /*#__PURE__*/function (ErrorCode) {
|
|
|
185
190
|
ErrorCode["invalidPartnerId"] = "13";
|
|
186
191
|
ErrorCode["invalidMessage"] = "14";
|
|
187
192
|
ErrorCode["invalidPhone"] = "15";
|
|
193
|
+
// Common 156001 - 156999,
|
|
188
194
|
ErrorCode["walletIdNotFound"] = "156001";
|
|
189
195
|
ErrorCode["tokenIdNotFound"] = "156002";
|
|
190
196
|
ErrorCode["transactionIdNotFound"] = "156003";
|
|
191
197
|
ErrorCode["walletSetIdNotFound"] = "156004";
|
|
198
|
+
// Transaction related - 155201 - 155499,
|
|
192
199
|
ErrorCode["notEnoughFounds"] = "155201";
|
|
193
200
|
ErrorCode["notEnoughBalance"] = "155202";
|
|
194
201
|
ErrorCode["exceedWithdrawLimit"] = "155203";
|
|
@@ -209,6 +216,7 @@ export let ErrorCode = /*#__PURE__*/function (ErrorCode) {
|
|
|
209
216
|
ErrorCode["invalidDestinationAddress"] = "155218";
|
|
210
217
|
ErrorCode["tokenWalletChainMismatch"] = "155219";
|
|
211
218
|
ErrorCode["wrongAmountsNumber"] = "155220";
|
|
219
|
+
// User related - 155101 - 155199,
|
|
212
220
|
ErrorCode["userAlreadyExisted"] = "155101";
|
|
213
221
|
ErrorCode["userNotFound"] = "155102";
|
|
214
222
|
ErrorCode["userTokenNotFound"] = "155103";
|
|
@@ -229,10 +237,13 @@ export let ErrorCode = /*#__PURE__*/function (ErrorCode) {
|
|
|
229
237
|
ErrorCode["invalidEncryptionKey"] = "155118";
|
|
230
238
|
ErrorCode["userPinLocked"] = "155119";
|
|
231
239
|
ErrorCode["securityAnswersLocked"] = "155120";
|
|
240
|
+
// Wallet- 155501 - 155599,
|
|
232
241
|
ErrorCode["walletIsFrozen"] = "155501";
|
|
233
242
|
ErrorCode["maxWalletLimitReached"] = "155502";
|
|
234
243
|
ErrorCode["walletSetIdMutuallyExclusive"] = "155503";
|
|
235
244
|
ErrorCode["metadataUnmatched"] = "155504";
|
|
245
|
+
// WalletSet - 155601 - 155699,
|
|
246
|
+
// SDK UI - 155701 - 155799,
|
|
236
247
|
ErrorCode["userCanceled"] = "155701";
|
|
237
248
|
ErrorCode["launchUiFailed"] = "155702";
|
|
238
249
|
ErrorCode["pinCodeNotMatched"] = "155703";
|
|
@@ -306,6 +317,7 @@ export let ExecuteResultType = /*#__PURE__*/function (ExecuteResultType) {
|
|
|
306
317
|
ExecuteResultType["SIGN_TYPEDDATA"] = "SIGN_TYPEDDATA";
|
|
307
318
|
ExecuteResultType["INITIALIZE"] = "INITIALIZE";
|
|
308
319
|
ExecuteResultType["SET_BIOMETRICS_PIN"] = "SET_BIOMETRICS_PIN";
|
|
320
|
+
ExecuteResultType["WALLET_UPGRADE"] = "WALLET_UPGRADE";
|
|
309
321
|
return ExecuteResultType;
|
|
310
322
|
}({});
|
|
311
323
|
export let InputType = /*#__PURE__*/function (InputType) {
|
package/lib/module/types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["TextsKey","IconTextsKey","TextKey","ImageKey","DateFormat","ErrorCode","SecurityQuestion","constructor","title","inputType","IconTextConfig","image","textConfig","TextConfig","text","gradientColorsOrTextColor","font","Array","isArray","gradientColors","textColor","ExecuteResultStatus","ExecuteEvent","ExecuteResultType","InputType","SocialProvider"],"sourceRoot":"../../src","sources":["types.ts"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AA0DA,WAAYA,QAAQ,0BAARA,QAAQ;EAARA,QAAQ;EAARA,QAAQ;EAARA,QAAQ;EAARA,QAAQ;EAARA,QAAQ;EAARA,QAAQ;EAARA,QAAQ;EAAA,OAARA,QAAQ;AAAA;AAUpB,WAAYC,YAAY,0BAAZA,YAAY;EAAZA,YAAY;EAAA,OAAZA,YAAY;AAAA;AAIxB,WAAYC,OAAO,0BAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;EAAPA,OAAO;
|
|
1
|
+
{"version":3,"names":["TextsKey","IconTextsKey","TextKey","ImageKey","DateFormat","ErrorCode","SecurityQuestion","constructor","title","inputType","IconTextConfig","image","textConfig","TextConfig","text","gradientColorsOrTextColor","font","Array","isArray","gradientColors","textColor","ExecuteResultStatus","ExecuteEvent","ExecuteResultType","InputType","SocialProvider"],"sourceRoot":"../../src","sources":["types.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -357,7 +357,8 @@ export declare enum ExecuteResultType {
|
|
|
357
357
|
SIGN_MESSAGE = "SIGN_MESSAGE",
|
|
358
358
|
SIGN_TYPEDDATA = "SIGN_TYPEDDATA",
|
|
359
359
|
INITIALIZE = "INITIALIZE",
|
|
360
|
-
SET_BIOMETRICS_PIN = "SET_BIOMETRICS_PIN"
|
|
360
|
+
SET_BIOMETRICS_PIN = "SET_BIOMETRICS_PIN",
|
|
361
|
+
WALLET_UPGRADE = "WALLET_UPGRADE"
|
|
361
362
|
}
|
|
362
363
|
export declare enum InputType {
|
|
363
364
|
text = "text",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/types.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/types.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@circle-fin/w3s-pw-react-native-sdk",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"description": "React Native SDK for Circle Programmable Wallet",
|
|
5
5
|
"main": "lib/commonjs/index",
|
|
6
6
|
"module": "lib/module/index",
|
|
@@ -60,32 +60,32 @@
|
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@commitlint/config-conventional": "^17.0.2",
|
|
62
62
|
"@evilmartians/lefthook": "^1.5.0",
|
|
63
|
-
"@react-native/
|
|
63
|
+
"@react-native-community/cli": "^18.0.0",
|
|
64
|
+
"@react-native/eslint-config": "0.79.3",
|
|
64
65
|
"@release-it/conventional-changelog": "^8.0.1",
|
|
65
|
-
"@types/jest": "^
|
|
66
|
-
"@types/react": "
|
|
67
|
-
"@
|
|
68
|
-
"@typescript-eslint/
|
|
69
|
-
"@typescript-eslint/parser": "latest",
|
|
66
|
+
"@types/jest": "^29.5.13",
|
|
67
|
+
"@types/react": "^19.0.0",
|
|
68
|
+
"@typescript-eslint/eslint-plugin": "^5.30.5",
|
|
69
|
+
"@typescript-eslint/parser": "^5.30.5",
|
|
70
70
|
"commitlint": "^17.0.2",
|
|
71
71
|
"del-cli": "^5.0.0",
|
|
72
|
-
"eslint": "^8.
|
|
72
|
+
"eslint": "^8.19.0",
|
|
73
73
|
"eslint-config-prettier": "^8.5.0",
|
|
74
74
|
"eslint-plugin-prettier": "^4.0.0",
|
|
75
|
-
"eslint-plugin-react": "
|
|
76
|
-
"jest": "^
|
|
75
|
+
"eslint-plugin-react": "^7.30.1",
|
|
76
|
+
"jest": "^29.6.3",
|
|
77
77
|
"pod-install": "^0.1.0",
|
|
78
|
-
"prettier": "
|
|
79
|
-
"react": "
|
|
80
|
-
"react-native": "0.
|
|
78
|
+
"prettier": "2.8.8",
|
|
79
|
+
"react": "19.0.0",
|
|
80
|
+
"react-native": "0.79.3",
|
|
81
81
|
"react-native-builder-bob": "^0.20.0",
|
|
82
82
|
"release-it": "^17.1.1",
|
|
83
83
|
"turbo": "^1.10.7",
|
|
84
84
|
"typedoc": "^0.25.4",
|
|
85
|
-
"typescript": "^5.0.
|
|
85
|
+
"typescript": "^5.0.4"
|
|
86
86
|
},
|
|
87
87
|
"resolutions": {
|
|
88
|
-
"@types/react": "
|
|
88
|
+
"@types/react": "^18.2.0"
|
|
89
89
|
},
|
|
90
90
|
"peerDependencies": {
|
|
91
91
|
"react": "*",
|
package/src/types.ts
CHANGED
|
@@ -1,109 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
/* Visit https://aka.ms/tsconfig to read more about this file */
|
|
4
|
-
|
|
5
|
-
/* Projects */
|
|
6
|
-
// "incremental": true, /* Save .tsbuildinfo files to allow for incremental compilation of projects. */
|
|
7
|
-
// "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */
|
|
8
|
-
// "tsBuildInfoFile": "./.tsbuildinfo", /* Specify the path to .tsbuildinfo incremental compilation file. */
|
|
9
|
-
// "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects. */
|
|
10
|
-
// "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */
|
|
11
|
-
// "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */
|
|
12
|
-
|
|
13
|
-
/* Language and Environment */
|
|
14
|
-
"target": "es2016", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
|
|
15
|
-
// "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
|
|
16
|
-
// "jsx": "preserve", /* Specify what JSX code is generated. */
|
|
17
|
-
// "experimentalDecorators": true, /* Enable experimental support for legacy experimental decorators. */
|
|
18
|
-
// "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */
|
|
19
|
-
// "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'. */
|
|
20
|
-
// "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */
|
|
21
|
-
// "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using 'jsx: react-jsx*'. */
|
|
22
|
-
// "reactNamespace": "", /* Specify the object invoked for 'createElement'. This only applies when targeting 'react' JSX emit. */
|
|
23
|
-
// "noLib": true, /* Disable including any library files, including the default lib.d.ts. */
|
|
24
|
-
// "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */
|
|
25
|
-
// "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */
|
|
26
|
-
|
|
27
|
-
/* Modules */
|
|
28
|
-
"module": "commonjs", /* Specify what module code is generated. */
|
|
29
|
-
// "rootDir": "./", /* Specify the root folder within your source files. */
|
|
30
|
-
// "moduleResolution": "node10", /* Specify how TypeScript looks up a file from a given module specifier. */
|
|
31
|
-
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
|
|
32
|
-
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
|
|
33
|
-
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
|
|
34
|
-
// "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */
|
|
35
|
-
// "types": [], /* Specify type package names to be included without being referenced in a source file. */
|
|
36
|
-
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
|
|
37
|
-
// "moduleSuffixes": [], /* List of file name suffixes to search when resolving a module. */
|
|
38
|
-
// "allowImportingTsExtensions": true, /* Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set. */
|
|
39
|
-
// "resolvePackageJsonExports": true, /* Use the package.json 'exports' field when resolving package imports. */
|
|
40
|
-
// "resolvePackageJsonImports": true, /* Use the package.json 'imports' field when resolving imports. */
|
|
41
|
-
// "customConditions": [], /* Conditions to set in addition to the resolver-specific defaults when resolving imports. */
|
|
42
|
-
"resolveJsonModule": true, /* Enable importing .json files. */
|
|
43
|
-
// "allowArbitraryExtensions": true, /* Enable importing files with any extension, provided a declaration file is present. */
|
|
44
|
-
// "noResolve": true, /* Disallow 'import's, 'require's or '<reference>'s from expanding the number of files TypeScript should add to a project. */
|
|
45
|
-
|
|
46
|
-
/* JavaScript Support */
|
|
47
|
-
// "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */
|
|
48
|
-
// "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */
|
|
49
|
-
// "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */
|
|
50
|
-
|
|
51
|
-
/* Emit */
|
|
52
|
-
// "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
|
|
53
|
-
// "declarationMap": true, /* Create sourcemaps for d.ts files. */
|
|
54
|
-
// "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
|
|
55
|
-
// "sourceMap": true, /* Create source map files for emitted JavaScript files. */
|
|
56
|
-
// "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
|
|
57
|
-
// "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */
|
|
58
|
-
// "outDir": "./", /* Specify an output folder for all emitted files. */
|
|
59
|
-
// "removeComments": true, /* Disable emitting comments. */
|
|
60
|
-
// "noEmit": true, /* Disable emitting files from a compilation. */
|
|
61
|
-
// "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
|
|
62
|
-
// "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types. */
|
|
63
|
-
// "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */
|
|
64
|
-
// "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */
|
|
65
|
-
// "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
|
|
66
|
-
// "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */
|
|
67
|
-
// "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */
|
|
68
|
-
// "newLine": "crlf", /* Set the newline character for emitting files. */
|
|
69
|
-
// "stripInternal": true, /* Disable emitting declarations that have '@internal' in their JSDoc comments. */
|
|
70
|
-
// "noEmitHelpers": true, /* Disable generating custom helper functions like '__extends' in compiled output. */
|
|
71
|
-
// "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */
|
|
72
|
-
// "preserveConstEnums": true, /* Disable erasing 'const enum' declarations in generated code. */
|
|
73
|
-
// "declarationDir": "./", /* Specify the output directory for generated declaration files. */
|
|
74
|
-
// "preserveValueImports": true, /* Preserve unused imported values in the JavaScript output that would otherwise be removed. */
|
|
75
|
-
|
|
76
|
-
/* Interop Constraints */
|
|
77
|
-
// "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */
|
|
78
|
-
// "verbatimModuleSyntax": true, /* Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting. */
|
|
79
|
-
// "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */
|
|
80
|
-
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
|
|
81
|
-
// "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
|
|
82
|
-
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
|
|
83
|
-
|
|
84
|
-
/* Type Checking */
|
|
85
|
-
"strict": true, /* Enable all strict type-checking options. */
|
|
86
|
-
// "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied 'any' type. */
|
|
87
|
-
// "strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined'. */
|
|
88
|
-
// "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */
|
|
89
|
-
// "strictBindCallApply": true, /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function. */
|
|
90
|
-
// "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */
|
|
91
|
-
// "noImplicitThis": true, /* Enable error reporting when 'this' is given the type 'any'. */
|
|
92
|
-
// "useUnknownInCatchVariables": true, /* Default catch clause variables as 'unknown' instead of 'any'. */
|
|
93
|
-
// "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */
|
|
94
|
-
// "noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */
|
|
95
|
-
// "noUnusedParameters": true, /* Raise an error when a function parameter isn't read. */
|
|
96
|
-
// "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */
|
|
97
|
-
// "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */
|
|
98
|
-
// "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */
|
|
99
|
-
// "noUncheckedIndexedAccess": true, /* Add 'undefined' to a type when accessed using an index. */
|
|
100
|
-
// "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */
|
|
101
|
-
// "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type. */
|
|
102
|
-
// "allowUnusedLabels": true, /* Disable error reporting for unused labels. */
|
|
103
|
-
// "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */
|
|
104
|
-
|
|
105
|
-
/* Completeness */
|
|
106
|
-
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
|
|
107
|
-
"skipLibCheck": true /* Skip type checking all .d.ts files. */
|
|
108
|
-
}
|
|
109
|
-
}
|
|
@@ -1,109 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
/* Visit https://aka.ms/tsconfig to read more about this file */
|
|
4
|
-
|
|
5
|
-
/* Projects */
|
|
6
|
-
// "incremental": true, /* Save .tsbuildinfo files to allow for incremental compilation of projects. */
|
|
7
|
-
// "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */
|
|
8
|
-
// "tsBuildInfoFile": "./.tsbuildinfo", /* Specify the path to .tsbuildinfo incremental compilation file. */
|
|
9
|
-
// "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects. */
|
|
10
|
-
// "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */
|
|
11
|
-
// "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */
|
|
12
|
-
|
|
13
|
-
/* Language and Environment */
|
|
14
|
-
"target": "es2016", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
|
|
15
|
-
// "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
|
|
16
|
-
// "jsx": "preserve", /* Specify what JSX code is generated. */
|
|
17
|
-
// "experimentalDecorators": true, /* Enable experimental support for legacy experimental decorators. */
|
|
18
|
-
// "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */
|
|
19
|
-
// "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'. */
|
|
20
|
-
// "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */
|
|
21
|
-
// "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using 'jsx: react-jsx*'. */
|
|
22
|
-
// "reactNamespace": "", /* Specify the object invoked for 'createElement'. This only applies when targeting 'react' JSX emit. */
|
|
23
|
-
// "noLib": true, /* Disable including any library files, including the default lib.d.ts. */
|
|
24
|
-
// "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */
|
|
25
|
-
// "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */
|
|
26
|
-
|
|
27
|
-
/* Modules */
|
|
28
|
-
"module": "commonjs", /* Specify what module code is generated. */
|
|
29
|
-
// "rootDir": "./", /* Specify the root folder within your source files. */
|
|
30
|
-
// "moduleResolution": "node10", /* Specify how TypeScript looks up a file from a given module specifier. */
|
|
31
|
-
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
|
|
32
|
-
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
|
|
33
|
-
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
|
|
34
|
-
// "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */
|
|
35
|
-
// "types": [], /* Specify type package names to be included without being referenced in a source file. */
|
|
36
|
-
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
|
|
37
|
-
// "moduleSuffixes": [], /* List of file name suffixes to search when resolving a module. */
|
|
38
|
-
// "allowImportingTsExtensions": true, /* Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set. */
|
|
39
|
-
// "resolvePackageJsonExports": true, /* Use the package.json 'exports' field when resolving package imports. */
|
|
40
|
-
// "resolvePackageJsonImports": true, /* Use the package.json 'imports' field when resolving imports. */
|
|
41
|
-
// "customConditions": [], /* Conditions to set in addition to the resolver-specific defaults when resolving imports. */
|
|
42
|
-
"resolveJsonModule": true, /* Enable importing .json files. */
|
|
43
|
-
// "allowArbitraryExtensions": true, /* Enable importing files with any extension, provided a declaration file is present. */
|
|
44
|
-
// "noResolve": true, /* Disallow 'import's, 'require's or '<reference>'s from expanding the number of files TypeScript should add to a project. */
|
|
45
|
-
|
|
46
|
-
/* JavaScript Support */
|
|
47
|
-
// "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */
|
|
48
|
-
// "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */
|
|
49
|
-
// "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */
|
|
50
|
-
|
|
51
|
-
/* Emit */
|
|
52
|
-
// "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
|
|
53
|
-
// "declarationMap": true, /* Create sourcemaps for d.ts files. */
|
|
54
|
-
// "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
|
|
55
|
-
// "sourceMap": true, /* Create source map files for emitted JavaScript files. */
|
|
56
|
-
// "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
|
|
57
|
-
// "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */
|
|
58
|
-
// "outDir": "./", /* Specify an output folder for all emitted files. */
|
|
59
|
-
// "removeComments": true, /* Disable emitting comments. */
|
|
60
|
-
// "noEmit": true, /* Disable emitting files from a compilation. */
|
|
61
|
-
// "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
|
|
62
|
-
// "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types. */
|
|
63
|
-
// "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */
|
|
64
|
-
// "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */
|
|
65
|
-
// "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
|
|
66
|
-
// "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */
|
|
67
|
-
// "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */
|
|
68
|
-
// "newLine": "crlf", /* Set the newline character for emitting files. */
|
|
69
|
-
// "stripInternal": true, /* Disable emitting declarations that have '@internal' in their JSDoc comments. */
|
|
70
|
-
// "noEmitHelpers": true, /* Disable generating custom helper functions like '__extends' in compiled output. */
|
|
71
|
-
// "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */
|
|
72
|
-
// "preserveConstEnums": true, /* Disable erasing 'const enum' declarations in generated code. */
|
|
73
|
-
// "declarationDir": "./", /* Specify the output directory for generated declaration files. */
|
|
74
|
-
// "preserveValueImports": true, /* Preserve unused imported values in the JavaScript output that would otherwise be removed. */
|
|
75
|
-
|
|
76
|
-
/* Interop Constraints */
|
|
77
|
-
// "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */
|
|
78
|
-
// "verbatimModuleSyntax": true, /* Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting. */
|
|
79
|
-
// "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */
|
|
80
|
-
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
|
|
81
|
-
// "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
|
|
82
|
-
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
|
|
83
|
-
|
|
84
|
-
/* Type Checking */
|
|
85
|
-
"strict": true, /* Enable all strict type-checking options. */
|
|
86
|
-
// "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied 'any' type. */
|
|
87
|
-
// "strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined'. */
|
|
88
|
-
// "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */
|
|
89
|
-
// "strictBindCallApply": true, /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function. */
|
|
90
|
-
// "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */
|
|
91
|
-
// "noImplicitThis": true, /* Enable error reporting when 'this' is given the type 'any'. */
|
|
92
|
-
// "useUnknownInCatchVariables": true, /* Default catch clause variables as 'unknown' instead of 'any'. */
|
|
93
|
-
// "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */
|
|
94
|
-
// "noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */
|
|
95
|
-
// "noUnusedParameters": true, /* Raise an error when a function parameter isn't read. */
|
|
96
|
-
// "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */
|
|
97
|
-
// "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */
|
|
98
|
-
// "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */
|
|
99
|
-
// "noUncheckedIndexedAccess": true, /* Add 'undefined' to a type when accessed using an index. */
|
|
100
|
-
// "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */
|
|
101
|
-
// "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type. */
|
|
102
|
-
// "allowUnusedLabels": true, /* Disable error reporting for unused labels. */
|
|
103
|
-
// "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */
|
|
104
|
-
|
|
105
|
-
/* Completeness */
|
|
106
|
-
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
|
|
107
|
-
"skipLibCheck": true /* Skip type checking all .d.ts files. */
|
|
108
|
-
}
|
|
109
|
-
}
|
package/src/tsconfig.build.json
DELETED
|
@@ -1,109 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
/* Visit https://aka.ms/tsconfig to read more about this file */
|
|
4
|
-
|
|
5
|
-
/* Projects */
|
|
6
|
-
// "incremental": true, /* Save .tsbuildinfo files to allow for incremental compilation of projects. */
|
|
7
|
-
// "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */
|
|
8
|
-
// "tsBuildInfoFile": "./.tsbuildinfo", /* Specify the path to .tsbuildinfo incremental compilation file. */
|
|
9
|
-
// "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects. */
|
|
10
|
-
// "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */
|
|
11
|
-
// "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */
|
|
12
|
-
|
|
13
|
-
/* Language and Environment */
|
|
14
|
-
"target": "es2016", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
|
|
15
|
-
// "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
|
|
16
|
-
// "jsx": "preserve", /* Specify what JSX code is generated. */
|
|
17
|
-
// "experimentalDecorators": true, /* Enable experimental support for legacy experimental decorators. */
|
|
18
|
-
// "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */
|
|
19
|
-
// "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'. */
|
|
20
|
-
// "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */
|
|
21
|
-
// "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using 'jsx: react-jsx*'. */
|
|
22
|
-
// "reactNamespace": "", /* Specify the object invoked for 'createElement'. This only applies when targeting 'react' JSX emit. */
|
|
23
|
-
// "noLib": true, /* Disable including any library files, including the default lib.d.ts. */
|
|
24
|
-
// "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */
|
|
25
|
-
// "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */
|
|
26
|
-
|
|
27
|
-
/* Modules */
|
|
28
|
-
"module": "commonjs", /* Specify what module code is generated. */
|
|
29
|
-
// "rootDir": "./", /* Specify the root folder within your source files. */
|
|
30
|
-
// "moduleResolution": "node10", /* Specify how TypeScript looks up a file from a given module specifier. */
|
|
31
|
-
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
|
|
32
|
-
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
|
|
33
|
-
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
|
|
34
|
-
// "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */
|
|
35
|
-
// "types": [], /* Specify type package names to be included without being referenced in a source file. */
|
|
36
|
-
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
|
|
37
|
-
// "moduleSuffixes": [], /* List of file name suffixes to search when resolving a module. */
|
|
38
|
-
// "allowImportingTsExtensions": true, /* Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set. */
|
|
39
|
-
// "resolvePackageJsonExports": true, /* Use the package.json 'exports' field when resolving package imports. */
|
|
40
|
-
// "resolvePackageJsonImports": true, /* Use the package.json 'imports' field when resolving imports. */
|
|
41
|
-
// "customConditions": [], /* Conditions to set in addition to the resolver-specific defaults when resolving imports. */
|
|
42
|
-
"resolveJsonModule": true, /* Enable importing .json files. */
|
|
43
|
-
// "allowArbitraryExtensions": true, /* Enable importing files with any extension, provided a declaration file is present. */
|
|
44
|
-
// "noResolve": true, /* Disallow 'import's, 'require's or '<reference>'s from expanding the number of files TypeScript should add to a project. */
|
|
45
|
-
|
|
46
|
-
/* JavaScript Support */
|
|
47
|
-
// "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */
|
|
48
|
-
// "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */
|
|
49
|
-
// "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */
|
|
50
|
-
|
|
51
|
-
/* Emit */
|
|
52
|
-
// "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
|
|
53
|
-
// "declarationMap": true, /* Create sourcemaps for d.ts files. */
|
|
54
|
-
// "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
|
|
55
|
-
// "sourceMap": true, /* Create source map files for emitted JavaScript files. */
|
|
56
|
-
// "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
|
|
57
|
-
// "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */
|
|
58
|
-
// "outDir": "./", /* Specify an output folder for all emitted files. */
|
|
59
|
-
// "removeComments": true, /* Disable emitting comments. */
|
|
60
|
-
// "noEmit": true, /* Disable emitting files from a compilation. */
|
|
61
|
-
// "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
|
|
62
|
-
// "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types. */
|
|
63
|
-
// "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */
|
|
64
|
-
// "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */
|
|
65
|
-
// "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
|
|
66
|
-
// "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */
|
|
67
|
-
// "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */
|
|
68
|
-
// "newLine": "crlf", /* Set the newline character for emitting files. */
|
|
69
|
-
// "stripInternal": true, /* Disable emitting declarations that have '@internal' in their JSDoc comments. */
|
|
70
|
-
// "noEmitHelpers": true, /* Disable generating custom helper functions like '__extends' in compiled output. */
|
|
71
|
-
// "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */
|
|
72
|
-
// "preserveConstEnums": true, /* Disable erasing 'const enum' declarations in generated code. */
|
|
73
|
-
// "declarationDir": "./", /* Specify the output directory for generated declaration files. */
|
|
74
|
-
// "preserveValueImports": true, /* Preserve unused imported values in the JavaScript output that would otherwise be removed. */
|
|
75
|
-
|
|
76
|
-
/* Interop Constraints */
|
|
77
|
-
// "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */
|
|
78
|
-
// "verbatimModuleSyntax": true, /* Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting. */
|
|
79
|
-
// "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */
|
|
80
|
-
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
|
|
81
|
-
// "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
|
|
82
|
-
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
|
|
83
|
-
|
|
84
|
-
/* Type Checking */
|
|
85
|
-
"strict": true, /* Enable all strict type-checking options. */
|
|
86
|
-
// "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied 'any' type. */
|
|
87
|
-
// "strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined'. */
|
|
88
|
-
// "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */
|
|
89
|
-
// "strictBindCallApply": true, /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function. */
|
|
90
|
-
// "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */
|
|
91
|
-
// "noImplicitThis": true, /* Enable error reporting when 'this' is given the type 'any'. */
|
|
92
|
-
// "useUnknownInCatchVariables": true, /* Default catch clause variables as 'unknown' instead of 'any'. */
|
|
93
|
-
// "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */
|
|
94
|
-
// "noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */
|
|
95
|
-
// "noUnusedParameters": true, /* Raise an error when a function parameter isn't read. */
|
|
96
|
-
// "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */
|
|
97
|
-
// "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */
|
|
98
|
-
// "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */
|
|
99
|
-
// "noUncheckedIndexedAccess": true, /* Add 'undefined' to a type when accessed using an index. */
|
|
100
|
-
// "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */
|
|
101
|
-
// "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type. */
|
|
102
|
-
// "allowUnusedLabels": true, /* Disable error reporting for unused labels. */
|
|
103
|
-
// "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */
|
|
104
|
-
|
|
105
|
-
/* Completeness */
|
|
106
|
-
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
|
|
107
|
-
"skipLibCheck": true /* Skip type checking all .d.ts files. */
|
|
108
|
-
}
|
|
109
|
-
}
|