function resolveModulePath()

in scripts/esbuild/resolveTSConfig.js [6:12]


function resolveModulePath(path) {
  try {
    return require.resolve(path);
  } catch (e) {
    return undefined;
  }
}