@xylabs/ts-scripts-yarn3 4.0.0-rc.16 → 4.0.0-rc.17

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.
@@ -1473,10 +1473,7 @@ var getNested = /* @__PURE__ */ __name((config2) => {
1473
1473
  if (config2.extends) {
1474
1474
  const require2 = createRequire(import.meta.url);
1475
1475
  const opts = require2(config2.extends);
1476
- return {
1477
- ...getNested(opts),
1478
- ...config2.compilerOptions
1479
- };
1476
+ return (0, import_deepmerge.default)(getNested(opts), config2.compilerOptions ?? {});
1480
1477
  }
1481
1478
  return config2.compilerOptions;
1482
1479
  }, "getNested");