forked from bigcommerce/checkout-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
60 lines (60 loc) · 1.77 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
{
"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/afterpay-integration": [
"packages/afterpay-integration/src/index.ts"
],
"@@bigcommerce/checkout/hosted-credit-card-integration": [
"packages/hosted-credit-card-integration/src/index.ts"
],
"@bigcommerce/checkout/apple-pay-integration": [
"packages/apple-pay-integration/src/index.ts"
],
"@bigcommerce/checkout/checkout-button-integration": [
"packages/checkout-button-integration/src/index.ts"
],
"@bigcommerce/checkout/core": [
"packages/core/src/app/index.ts"
],
"@bigcommerce/checkout/google-pay-integration": [
"packages/google-pay-integration/src/index.ts"
],
"@bigcommerce/checkout/payment-integration-api": [
"packages/payment-integration-api/src/index.ts"
],
"@bigcommerce/checkout/payment-integration-test-framework": [
"packages/payment-integration-test-framework/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"
}
}