-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(deps): patch projen with projen/projen#3690
Signed-off-by: Braden Mars <[email protected]>
- Loading branch information
Showing
5 changed files
with
85 additions
and
132 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
diff --git a/lib/javascript/typescript-config.d.ts b/lib/javascript/typescript-config.d.ts | ||
index 292b0074351a61dd3b1786bc1701f15b7d6d2543..c595f99fb655943d539442741717b07f5f9f9a33 100644 | ||
--- a/lib/javascript/typescript-config.d.ts | ||
+++ b/lib/javascript/typescript-config.d.ts | ||
@@ -556,7 +556,7 @@ export interface TypeScriptCompilerOptions { | ||
* | ||
* @see https://www.typescriptlang.org/tsconfig#allowUnusedLabels | ||
*/ | ||
- readonly allowUnusedLabels?: false; | ||
+ readonly allowUnusedLabels?: boolean; | ||
/** | ||
* Allow Unreachable Code | ||
* | ||
@@ -570,7 +570,7 @@ export interface TypeScriptCompilerOptions { | ||
* | ||
* @see https://www.typescriptlang.org/tsconfig#allowUnreachableCode | ||
*/ | ||
- readonly allowUnreachableCode?: false; | ||
+ readonly allowUnreachableCode?: boolean; | ||
/** | ||
* Check JS | ||
* | ||
@@ -580,7 +580,7 @@ export interface TypeScriptCompilerOptions { | ||
* | ||
* @see https://www.typescriptlang.org/tsconfig#checkJs | ||
*/ | ||
- readonly checkJs?: true; | ||
+ readonly checkJs?: boolean; | ||
} | ||
/** | ||
* Container for `TypescriptConfig` `tsconfig.json` base configuration(s). |
Oops, something went wrong.