forked from bigcommerce/checkout-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
31 lines (31 loc) · 775 Bytes
/
tsconfig.json
File metadata and controls
31 lines (31 loc) · 775 Bytes
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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"lib": [
"dom",
"dom.iterable",
"es6",
"scripthost"
],
"module": "es6",
"moduleResolution": "node",
"noUnusedParameters": true,
"noUnusedLocals": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"stripInternal": true,
"target": "es5"
},
"include": [
"src/**/*.ts"
],
"files": [
"src/common/types/card-validator.d.ts",
"src/common/types/webpack.d.ts"
]
}