Skip to content

Commit a5c694a

Browse files
committed
chore(tsconfig): sort compilerOptions
1 parent f618ed1 commit a5c694a

File tree

4 files changed

+26
-29
lines changed

4 files changed

+26
-29
lines changed

tsconfig.cjs.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
4+
"importHelpers": true,
5+
"inlineSourceMap": true,
6+
"inlineSources": true,
47
"module": "commonjs",
58
"moduleResolution": "node",
6-
"target": "ES2018",
7-
"strict": true,
8-
"importHelpers": true,
99
"noEmitHelpers": true,
10+
"removeComments": true,
1011
"sourceMap": false,
11-
"inlineSourceMap": true,
12-
"inlineSources": true,
13-
"removeComments": true
12+
"strict": true,
13+
"target": "ES2018"
1414
}
1515
}

tsconfig.es.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
4-
"target": "es5",
5-
"module": "esnext",
6-
"moduleResolution": "node",
7-
"strict": true,
8-
"sourceMap": false,
4+
"downlevelIteration": true,
95
"importHelpers": true,
10-
"noEmitHelpers": true,
116
"inlineSourceMap": true,
127
"inlineSources": true,
13-
"downlevelIteration": true
8+
"module": "esnext",
9+
"moduleResolution": "node",
10+
"noEmitHelpers": true,
11+
"sourceMap": false,
12+
"strict": true,
13+
"target": "es5"
1414
}
1515
}

tsconfig.json

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,26 @@
11
{
22
"compilerOptions": {
3-
/**
4-
* Must allow:
5-
*/
3+
"baseUrl": ".",
64
"downlevelIteration": true,
7-
"resolveJsonModule": true,
5+
"esModuleInterop": true,
86
"experimentalDecorators": true,
9-
"noUnusedParameters": false,
10-
"removeComments": false,
117
"incremental": true,
12-
"sourceMap": true,
13-
"preserveConstEnums": true,
14-
"noFallthroughCasesInSwitch": true,
15-
"esModuleInterop": true,
8+
"lib": ["es2015", "dom"],
169
"module": "commonjs",
1710
"moduleResolution": "node",
18-
"target": "es5",
19-
"lib": ["es2015", "dom"],
20-
"baseUrl": ".",
11+
"noFallthroughCasesInSwitch": true,
12+
"noUnusedParameters": false,
2113
"paths": {
2214
"@aws-sdk/*": ["packages/*/src"],
2315
"@aws-sdk/client-*": ["clients/client-*/"],
2416
"@aws-sdk/aws-*": ["protocol_tests/aws-*/"],
2517
"@aws-sdk/lib-*": ["lib/*"]
26-
}
18+
},
19+
"preserveConstEnums": true,
20+
"removeComments": false,
21+
"resolveJsonModule": true,
22+
"sourceMap": true,
23+
"target": "es5"
2724
},
2825
"include": ["packages/", "lib/"],
2926
"exclude": ["node_modules/", "**/*.spec.ts"],

tsconfig.types.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
4-
"strict": true,
54
"declaration": true,
6-
"emitDeclarationOnly": true
5+
"emitDeclarationOnly": true,
6+
"strict": true
77
}
88
}

0 commit comments

Comments
 (0)