MCPcopy Index your code
hub / github.com/continuedev/continue / tryBuildConfigTs

Function tryBuildConfigTs

core/config/load.ts:707–719  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

705}
706
707async function tryBuildConfigTs() {
708 try {
709 if (process.env.IS_BINARY === "true") {
710 await buildConfigTsWithBinary();
711 } else {
712 await buildConfigTsWithNodeModule();
713 }
714 } catch (e) {
715 console.log(
716 `Build error. Please check your ~/.continue/config.ts file: ${e}`,
717 );
718 }
719}
720
721async function buildConfigTsWithBinary() {
722 const cmd = [

Callers 1

Calls 3

buildConfigTsWithBinaryFunction · 0.85
logMethod · 0.65

Tested by

no test coverage detected