forked from aws/aws-sdk-js-v3
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
43 lines (43 loc) · 1.21 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"compilerOptions": {
/**
* Must allow:
*/
"downlevelIteration": true,
"resolveJsonModule": true,
"experimentalDecorators": true,
"noUnusedParameters": false,
"removeComments": false,
"incremental": true,
"sourceMap": true,
"preserveConstEnums": true,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true,
"module": "commonjs",
"moduleResolution": "node",
"target": "es5",
"lib": ["es2015", "dom"],
"baseUrl": ".",
"paths": {
"@aws-sdk/*": ["packages/*/src"],
"@aws-sdk/client-*": ["clients/client-*/"],
"@aws-sdk/aws-*": ["protocol_tests/aws-*/"],
"@aws-sdk/lib-*": ["lib/*"]
}
},
"include": ["packages/", "lib/"],
"exclude": ["node_modules/", "**/*.spec.ts"],
"typedocOptions": {
"readme": "README.md",
"mode": "modules",
"out": "docs",
"exclude": ["**/node_modules/**", "**/*.spec.ts"],
"excludeExternals": true,
"name": "AWS SDK for JavaScript v3",
"ignoreCompilerErrors": true,
"theme": "minimal",
"hideGenerator": true,
"clientDocs": "clients/{{CLIENT}}/docs",
"plugin": ["typedoc-plugin-lerna-packages", "@aws-sdk/core-packages-documentation-generator"]
}
}