Skip to content

Commit 17cbd6e

Browse files
trivikrTrivikram Kamat
authored andcommitted
chore(tsconfig): move common options to tsconfig
1 parent 0d3309e commit 17cbd6e

File tree

4 files changed

+7
-17
lines changed

4 files changed

+7
-17
lines changed

tsconfig.cjs.json

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,7 @@
11
{
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
4-
"importHelpers": true,
5-
"inlineSourceMap": true,
6-
"inlineSources": true,
74
"module": "commonjs",
8-
"moduleResolution": "node",
9-
"noEmitHelpers": true,
10-
"sourceMap": false,
11-
"strict": true,
125
"target": "ES2018"
136
}
147
}

tsconfig.es.json

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,7 @@
11
{
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
4-
"importHelpers": true,
5-
"inlineSourceMap": true,
6-
"inlineSources": true,
74
"module": "esnext",
8-
"moduleResolution": "node",
9-
"noEmitHelpers": true,
10-
"sourceMap": false,
11-
"strict": true,
125
"target": "es5"
136
}
147
}

tsconfig.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
{
22
"compilerOptions": {
3+
"baseUrl": ".",
34
"downlevelIteration": true,
45
"esModuleInterop": true,
5-
"resolveJsonModule": true,
6+
"importHelpers": true,
7+
"inlineSourceMap": true,
8+
"inlineSources": true,
69
"incremental": true,
710
"lib": ["es2015", "dom"],
811
"module": "commonjs",
912
"moduleResolution": "node",
13+
"noEmitHelpers": true,
1014
"noFallthroughCasesInSwitch": true,
1115
"paths": {
1216
"@aws-sdk/*": ["packages/*/src"],
@@ -16,7 +20,8 @@
1620
},
1721
"preserveConstEnums": true,
1822
"removeComments": true,
19-
"sourceMap": true,
23+
"resolveJsonModule": true,
24+
"strict": true,
2025
"target": "es5"
2126
},
2227
"include": ["packages/", "lib/"],

tsconfig.types.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"compilerOptions": {
44
"declaration": true,
55
"emitDeclarationOnly": true,
6-
"strict": true,
76
"removeComments": false
87
}
98
}

0 commit comments

Comments
 (0)