MCPcopy
hub / github.com/jonaskello/tsconfig-paths / mergeTsconfigs

Function mergeTsconfigs

src/tsconfig-loader.ts:214–229  ·  view source on GitHub ↗
(
  base: Tsconfig | undefined,
  config: Tsconfig | undefined
)

Source from the content-addressed store, hash-verified

212}
213
214function mergeTsconfigs(
215 base: Tsconfig | undefined,
216 config: Tsconfig | undefined
217): Tsconfig {
218 base = base || {};
219 config = config || {};
220
221 return {
222 ...base,
223 ...config,
224 compilerOptions: {
225 ...base.compilerOptions,
226 ...config.compilerOptions,
227 },
228 };
229}

Callers 1

loadTsconfigFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…