Skip to content

Commit

Permalink
Set isolatedDeclarations to false (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
carlansley authored Jun 27, 2024
1 parent 9eba579 commit ef9bcd7
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
34 changes: 17 additions & 17 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@checkdigit/typescript-config",
"version": "7.1.0",
"version": "7.1.1",
"description": "Check Digit standard Typescript configuration",
"prettier": "@checkdigit/prettier-config",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion src/compile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ export default async function ({
noImplicitOverride: true,
useUnknownInCatchVariables: true,
exactOptionalPropertyTypes: true,
isolatedDeclarations: true,
isolatedDeclarations: false,
noEmit: type !== 'types',
emitDeclarationOnly: type === 'types',
rootDir: inDir,
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@
"noImplicitOverride": true,
"useUnknownInCatchVariables": true,
"exactOptionalPropertyTypes": true,
"isolatedDeclarations": true
"isolatedDeclarations": false
}
}

0 comments on commit ef9bcd7

Please sign in to comment.