forked from bigcommerce/checkout-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
107 lines (107 loc) · 4.91 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
{
"compileOnSave": false,
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"declaration": false,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"incremental": true,
"jsx": "react",
"lib": ["dom", "dom.iterable", "esnext", "scripthost"],
"module": "esnext",
"moduleResolution": "node",
"noUnusedLocals": true,
"noUnusedParameters": true,
"paths": {
"@bigcommerce/checkout/adyen-integration": ["packages/adyen-integration/src/index.ts"],
"@bigcommerce/checkout/affirm-integration": ["packages/affirm-integration/src/index.ts"],
"@bigcommerce/checkout/analytics": ["packages/analytics/src/index.ts"],
"@bigcommerce/checkout/apple-pay-integration": [
"packages/apple-pay-integration/src/index.ts"
],
"@bigcommerce/checkout/barclay-integration": ["packages/barclay-integration/src/index.ts"],
"@bigcommerce/checkout/bluesnap-direct-integration": [
"packages/bluesnap-direct-integration/src/index.ts"
],
"@bigcommerce/checkout/bolt-integration": ["packages/bolt-integration/src/index.ts"],
"@bigcommerce/checkout/braintree-integration": [
"packages/braintree-integration/src/index.ts"
],
"@bigcommerce/checkout/checkout-button-integration": [
"packages/checkout-button-integration/src/index.ts"
],
"@bigcommerce/checkout/checkout-extension": ["packages/checkout-extension/src/index.ts"],
"@bigcommerce/checkout/checkoutcom-integration": [
"packages/checkoutcom-integration/src/index.ts"
],
"@bigcommerce/checkout/core": ["packages/core/src/app/index.ts"],
"@bigcommerce/checkout/credit-card-integration": [
"packages/credit-card-integration/src/index.ts"
],
"@bigcommerce/checkout/digitalriver-integration": [
"packages/digitalriver-integration/src/index.ts"
],
"@bigcommerce/checkout/dom-utils": ["packages/dom-utils/src/index.ts"],
"@bigcommerce/checkout/error-handling-utils": ["packages/error-handling-utils/src/index.ts"],
"@bigcommerce/checkout/google-pay-integration": [
"packages/google-pay-integration/src/index.ts"
],
"@bigcommerce/checkout/hosted-credit-card-integration": [
"packages/hosted-credit-card-integration/src/index.ts"
],
"@bigcommerce/checkout/hosted-dropin-integration": [
"packages/hosted-dropin-integration/src/index.ts"
],
"@bigcommerce/checkout/hosted-field-integration": [
"packages/hosted-field-integration/src/index.ts"
],
"@bigcommerce/checkout/hosted-payment-integration": [
"packages/hosted-payment-integration/src/index.ts"
],
"@bigcommerce/checkout/hosted-widget-integration": [
"packages/hosted-widget-integration/src/index.ts"
],
"@bigcommerce/checkout/instrument-utils": ["packages/instrument-utils/src/index.ts"],
"@bigcommerce/checkout/klarna-integration": ["packages/klarna-integration/src/index.ts"],
"@bigcommerce/checkout/stripe-integration": ["packages/stripe-integration/src/index.ts"],
"@bigcommerce/checkout/legacy-hoc": ["packages/legacy-hoc/src/index.ts"],
"@bigcommerce/checkout/locale": ["packages/locale/src/index.ts"],
"@bigcommerce/checkout/mollie-integration": ["packages/mollie-integration/src/index.ts"],
"@bigcommerce/checkout/offline-payment-integration": [
"packages/offline-payment-integration/src/index.ts"
],
"@bigcommerce/checkout/payment-integration-api": [
"packages/payment-integration-api/src/index.ts"
],
"@bigcommerce/checkout/paypal-commerce-integration": [
"packages/paypal-commerce-integration/src/index.ts"
],
"@bigcommerce/checkout/paypal-express-integration": [
"packages/paypal-express-integration/src/index.ts"
],
"@bigcommerce/checkout/paypal-fastlane-integration": [
"packages/paypal-fastlane-integration/src/index.ts"
],
"@bigcommerce/checkout/squarev2-integration": ["packages/squarev2-integration/src/index.ts"],
"@bigcommerce/checkout/td-bank-integration": ["packages/td-bank-integration/src/index.ts"],
"@bigcommerce/checkout/test-framework": ["packages/test-framework/src/index.ts"],
"@bigcommerce/checkout/test-mocks": ["packages/test-mocks/src/index.ts"],
"@bigcommerce/checkout/test-utils": ["packages/test-utils/src/index.ts"],
"@bigcommerce/checkout/ui": ["packages/ui/src/index.ts"],
"@bigcommerce/checkout/wallet-button-integration": [
"packages/wallet-button-integration/src/index.ts"
],
"@bigcommerce/checkout/workspace-tools": ["packages/workspace-tools/src/index.ts"]
},
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"strictNullChecks": true,
"stripInternal": true,
"target": "es5"
}
}