Skip to content

Commit

Permalink
chore: sync with @tsconfig/strictest
Browse files Browse the repository at this point in the history
  • Loading branch information
zanminkian committed Jan 7, 2024
1 parent 95c919c commit 4ceb4df
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/git-validator/tsconfig/cjs.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"isolatedModules": true,
"checkJs": false, // Don't check js for better experience. User can add `// @ts-check` on the top of js file to check it manually.
"esModuleInterop": true,
"skipLibCheck": true,
Expand All @@ -36,7 +37,6 @@
"declarationMap": true,
"inlineSourceMap": true,
"inlineSources": true,
"isolatedModules": true,
"jsx": "preserve"
/**
* 1. Typescript will include APIs for newer JS features matching the `target`. See https://www.typescriptlang.org/tsconfig#lib. Therefore, there is no need to add "ESNext" to lib.
Expand Down
2 changes: 1 addition & 1 deletion packages/git-validator/tsconfig/esm.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"isolatedModules": true,
"checkJs": false, // Don't check js for better experience. User can add `// @ts-check` on the top of js file to check it manually.
"esModuleInterop": true,
"skipLibCheck": true,
Expand All @@ -36,7 +37,6 @@
"declarationMap": true,
"inlineSourceMap": true,
"inlineSources": true,
"isolatedModules": true,
"jsx": "preserve"
/**
* 1. Typescript will include APIs for newer JS features matching the `target`. See https://www.typescriptlang.org/tsconfig#lib. Therefore, there is no need to add "ESNext" to lib.
Expand Down
2 changes: 1 addition & 1 deletion packages/git-validator/tsconfig/legacy.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"isolatedModules": true,
"checkJs": false, // Don't check js for better experience. User can add `// @ts-check` on the top of js file to check it manually.
"esModuleInterop": true,
"skipLibCheck": true,
Expand All @@ -36,7 +37,6 @@
"declarationMap": true,
"inlineSourceMap": true,
"inlineSources": true,
"isolatedModules": true,
"jsx": "preserve"
/**
* 1. Typescript will include APIs for newer JS features matching the `target`. See https://www.typescriptlang.org/tsconfig#lib. Therefore, there is no need to add "ESNext" to lib.
Expand Down
2 changes: 1 addition & 1 deletion packages/tsconfig/cjs.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"isolatedModules": true,
"checkJs": false, // Don't check js for better experience. User can add `// @ts-check` on the top of js file to check it manually.
"esModuleInterop": true,
"skipLibCheck": true,
Expand All @@ -36,7 +37,6 @@
"declarationMap": true,
"inlineSourceMap": true,
"inlineSources": true,
"isolatedModules": true,
"jsx": "preserve"
/**
* 1. Typescript will include APIs for newer JS features matching the `target`. See https://www.typescriptlang.org/tsconfig#lib. Therefore, there is no need to add "ESNext" to lib.
Expand Down
2 changes: 1 addition & 1 deletion packages/tsconfig/esm.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"isolatedModules": true,
"checkJs": false, // Don't check js for better experience. User can add `// @ts-check` on the top of js file to check it manually.
"esModuleInterop": true,
"skipLibCheck": true,
Expand All @@ -36,7 +37,6 @@
"declarationMap": true,
"inlineSourceMap": true,
"inlineSources": true,
"isolatedModules": true,
"jsx": "preserve"
/**
* 1. Typescript will include APIs for newer JS features matching the `target`. See https://www.typescriptlang.org/tsconfig#lib. Therefore, there is no need to add "ESNext" to lib.
Expand Down
2 changes: 1 addition & 1 deletion packages/tsconfig/legacy.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"isolatedModules": true,
"checkJs": false, // Don't check js for better experience. User can add `// @ts-check` on the top of js file to check it manually.
"esModuleInterop": true,
"skipLibCheck": true,
Expand All @@ -36,7 +37,6 @@
"declarationMap": true,
"inlineSourceMap": true,
"inlineSources": true,
"isolatedModules": true,
"jsx": "preserve"
/**
* 1. Typescript will include APIs for newer JS features matching the `target`. See https://www.typescriptlang.org/tsconfig#lib. Therefore, there is no need to add "ESNext" to lib.
Expand Down

0 comments on commit 4ceb4df

Please sign in to comment.