@checkdigit/typescript-config 7.1.0 → 7.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/builder.mjs +1 -1
- package/dist-mjs/compile.mjs +1 -1
- package/package.json +1 -1
- package/src/compile.ts +1 -1
- package/tsconfig.json +1 -1
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:
|
|
147
|
+
isolatedDeclarations: false,
|
|
148
148
|
noEmit: type2 !== "types",
|
|
149
149
|
emitDeclarationOnly: type2 === "types",
|
|
150
150
|
rootDir: inDir2,
|
package/dist-mjs/compile.mjs
CHANGED
|
@@ -110,7 +110,7 @@ async function compile_default({
|
|
|
110
110
|
noImplicitOverride: true,
|
|
111
111
|
useUnknownInCatchVariables: true,
|
|
112
112
|
exactOptionalPropertyTypes: true,
|
|
113
|
-
isolatedDeclarations:
|
|
113
|
+
isolatedDeclarations: false,
|
|
114
114
|
noEmit: type !== "types",
|
|
115
115
|
emitDeclarationOnly: type === "types",
|
|
116
116
|
rootDir: inDir,
|
package/package.json
CHANGED
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:
|
|
244
|
+
isolatedDeclarations: false,
|
|
245
245
|
noEmit: type !== 'types',
|
|
246
246
|
emitDeclarationOnly: type === 'types',
|
|
247
247
|
rootDir: inDir,
|