@webneat/codewiki 0.0.7 → 0.0.9

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.
package/dist/index.js CHANGED
@@ -1381,6 +1381,7 @@ import ts4 from "typescript";
1381
1381
  import path4 from "path";
1382
1382
  import ts3 from "typescript";
1383
1383
  function is_external_module(ctx, source_file, module_path) {
1384
+ if (module_path.startsWith("#")) return false;
1384
1385
  const resolved = ts3.resolveModuleName(module_path, source_file.fileName, ctx.program.getCompilerOptions(), ts3.sys);
1385
1386
  if (!resolved.resolvedModule) return true;
1386
1387
  const resolved_path = path4.resolve(resolved.resolvedModule.resolvedFileName);