Skip to content

Commit

Permalink
fix(deps): patch projen with projen/projen#3690
Browse files Browse the repository at this point in the history
Signed-off-by: Braden Mars <[email protected]>
  • Loading branch information
BradenM committed Jul 3, 2024
1 parent 50a4470 commit 43255be
Show file tree
Hide file tree
Showing 5 changed files with 85 additions and 132 deletions.
3 changes: 2 additions & 1 deletion .ncurc.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 31 additions & 0 deletions patches/[email protected]
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).
Loading

0 comments on commit 43255be

Please sign in to comment.