forked from smithy-lang/smithy-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
27 lines (27 loc) · 796 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
{
"compilerOptions": {
"baseUrl": ".",
"downlevelIteration": true,
"esModuleInterop": true,
"incremental": true,
"lib": ["es2015", "dom"],
"module": "commonjs",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"paths": {
"@aws-smithy/*": ["smithy-typescript-ssdk-libs/*/src"],
"@smithy/*": ["packages/*/src"]
},
"preserveConstEnums": true,
"removeComments": true,
"resolveJsonModule": true,
"target": "es5",
"useUnknownInCatchVariables": false,
"experimentalDecorators": true,
"jsx": "react",
"jsxFactory": "JSX.createElement",
"jsxFragmentFactory": "JSX.Fragment"
},
"include": ["packages/", "smithy-typescript-ssdk-libs/"],
"exclude": ["node_modules/", "**/*.spec.ts", "vitest.*"]
}