@checkdigit/typescript-config 7.1.0 → 7.1.1

Sign up to get free protection for your applications and to get access to all the features.
package/bin/builder.mjs CHANGED
@@ -144,7 +144,7 @@ async function compile_default({
144
144
  noImplicitOverride: true,
145
145
  useUnknownInCatchVariables: true,
146
146
  exactOptionalPropertyTypes: true,
147
- isolatedDeclarations: true,
147
+ isolatedDeclarations: false,
148
148
  noEmit: type2 !== "types",
149
149
  emitDeclarationOnly: type2 === "types",
150
150
  rootDir: inDir2,
@@ -110,7 +110,7 @@ async function compile_default({
110
110
  noImplicitOverride: true,
111
111
  useUnknownInCatchVariables: true,
112
112
  exactOptionalPropertyTypes: true,
113
- isolatedDeclarations: true,
113
+ isolatedDeclarations: false,
114
114
  noEmit: type !== "types",
115
115
  emitDeclarationOnly: type === "types",
116
116
  rootDir: inDir,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkdigit/typescript-config",
3
- "version": "7.1.0",
3
+ "version": "7.1.1",
4
4
  "description": "Check Digit standard Typescript configuration",
5
5
  "prettier": "@checkdigit/prettier-config",
6
6
  "engines": {
package/src/compile.ts CHANGED
@@ -241,7 +241,7 @@ export default async function ({
241
241
  noImplicitOverride: true,
242
242
  useUnknownInCatchVariables: true,
243
243
  exactOptionalPropertyTypes: true,
244
- isolatedDeclarations: true,
244
+ isolatedDeclarations: false,
245
245
  noEmit: type !== 'types',
246
246
  emitDeclarationOnly: type === 'types',
247
247
  rootDir: inDir,
package/tsconfig.json CHANGED
@@ -30,6 +30,6 @@
30
30
  "noImplicitOverride": true,
31
31
  "useUnknownInCatchVariables": true,
32
32
  "exactOptionalPropertyTypes": true,
33
- "isolatedDeclarations": true
33
+ "isolatedDeclarations": false
34
34
  }
35
35
  }