forked from aws/aws-sdk-js-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
29 lines (29 loc) · 862 Bytes
/
tsconfig.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
{
"extends": "@tsconfig/node16/tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"downlevelIteration": true,
"incremental": true,
"importHelpers": true,
"module": "commonjs",
"moduleResolution": "node",
"noEmitHelpers": false,
"noFallthroughCasesInSwitch": true,
"paths": {
"@aws-sdk/*": ["packages/*/"],
"@aws-sdk/client-*": ["clients/client-*/"],
"@aws-sdk/aws-*": ["private/aws-*/"],
"@aws-sdk/lib-*": ["lib/*"]
},
"preserveConstEnums": true,
"removeComments": true,
"resolveJsonModule": true,
"useUnknownInCatchVariables": false,
"experimentalDecorators": true,
"jsx": "react",
"jsxFactory": "JSX.createElement",
"jsxFragmentFactory": "JSX.Fragment"
},
"include": ["packages/", "lib/"],
"exclude": ["node_modules/", "**/*.spec.ts", "vitest.*.ts"]
}