Skip to content

Commit ef9bcd7

Browse files
authored
Set isolatedDeclarations to false (#60)
1 parent 9eba579 commit ef9bcd7

File tree

4 files changed

+20
-20
lines changed

4 files changed

+20
-20
lines changed

package-lock.json

+17-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@checkdigit/typescript-config",
3-
"version": "7.1.0",
3+
"version": "7.1.1",
44
"description": "Check Digit standard Typescript configuration",
55
"prettier": "@checkdigit/prettier-config",
66
"engines": {

src/compile.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ export default async function ({
241241
noImplicitOverride: true,
242242
useUnknownInCatchVariables: true,
243243
exactOptionalPropertyTypes: true,
244-
isolatedDeclarations: true,
244+
isolatedDeclarations: false,
245245
noEmit: type !== 'types',
246246
emitDeclarationOnly: type === 'types',
247247
rootDir: inDir,

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@
3030
"noImplicitOverride": true,
3131
"useUnknownInCatchVariables": true,
3232
"exactOptionalPropertyTypes": true,
33-
"isolatedDeclarations": true
33+
"isolatedDeclarations": false
3434
}
3535
}

0 commit comments

Comments
 (0)