Skip to content

Commit 28ea057

Browse files
authored
refactor: only pass --outDir flag when needed (#720)
1 parent a6a7588 commit 28ea057

File tree

35 files changed

+48
-113
lines changed

35 files changed

+48
-113
lines changed

e2e/external_dep/tsconfig.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
{
22
"compilerOptions": {
33
"composite": true
4-
},
5-
// Workaround https://github.com/microsoft/TypeScript/issues/59036
6-
"exclude": []
4+
}
75
}

e2e/worker/composite/tsconfig.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
{
22
"compilerOptions": {
33
"composite": true
4-
},
5-
// Workaround https://github.com/microsoft/TypeScript/issues/59036
6-
"exclude": []
4+
}
75
}

e2e/worker/feature/tsconfig.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,5 @@
44
"module": "ES2020",
55
"moduleResolution": "node",
66
"lib": ["ES2015"]
7-
},
8-
// Workaround https://github.com/microsoft/TypeScript/issues/59036
9-
"exclude": []
7+
}
108
}

e2e/worker/tsconfig.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,5 @@
33
"module": "ES2020",
44
"moduleResolution": "node",
55
"lib": ["ES2015", "DOM"]
6-
},
7-
// Workaround https://github.com/microsoft/TypeScript/issues/59036
8-
"exclude": []
6+
}
97
}

examples/connect_node/tsconfig.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,5 @@
55
"module": "ES2020",
66
// TODO: enable lib check here: repair broken type-check
77
"skipLibCheck": true
8-
},
9-
// Workaround https://github.com/microsoft/TypeScript/issues/59036
10-
"exclude": []
8+
}
119
}

examples/custom_compiler/tsconfig.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,5 @@
55
"lib": ["ES2015", "DOM"],
66
"composite": false,
77
"experimentalDecorators": true
8-
},
9-
// Workaround https://github.com/microsoft/TypeScript/issues/59036
10-
"exclude": []
8+
}
119
}

examples/deps_pkg/tsconfig.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
{
22
"compilerOptions": {
33
"declaration": true
4-
},
5-
// Workaround https://github.com/microsoft/TypeScript/issues/59036
6-
"exclude": []
4+
}
75
}
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
{
22
"compilerOptions": {
33
"declaration": true
4-
},
5-
// Workaround https://github.com/microsoft/TypeScript/issues/59036
6-
"exclude": []
4+
}
75
}

examples/dts_pkg/tsconfig.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
{
22
"compilerOptions": {
33
"declaration": true
4-
},
5-
// Workaround https://github.com/microsoft/TypeScript/issues/59036
6-
"exclude": []
4+
}
75
}

examples/emit_declaration_only/tsconfig.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,5 @@
22
"compilerOptions": {
33
"declaration": true,
44
"emitDeclarationOnly": true
5-
},
6-
// Workaround https://github.com/microsoft/TypeScript/issues/59036
7-
"exclude": []
5+
}
86
}

0 commit comments

Comments
 (0)