fix: restore ci after rebase drift

This commit is contained in:
Peter Steinberger
2026-04-07 08:40:17 +01:00
parent ce7ef626b8
commit 86361f4fca
15 changed files with 81 additions and 69 deletions

View File

@@ -94,10 +94,10 @@ export function collectOptInExtensionPackageBoundaries(rootDir = resolve(".")):
}
export function renderExtensionPackageBoundaryTsconfig(params?: {
paths?: Record<string, string[]>;
paths?: Record<string, readonly string[]>;
}): {
extends: "../tsconfig.package-boundary.base.json";
compilerOptions: { rootDir: "."; paths?: Record<string, string[]> };
compilerOptions: { rootDir: "."; paths?: Record<string, readonly string[]> };
include: typeof EXTENSION_PACKAGE_BOUNDARY_INCLUDE;
exclude: typeof EXTENSION_PACKAGE_BOUNDARY_EXCLUDE;
} {