@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/bin.cjs +1 -0
- package/dist/bin.cjs.map +1 -1
- package/dist/bin.js +1 -0
- package/dist/bin.js.map +1 -1
- package/dist/cli.cjs +1 -0
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +1 -0
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +1 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -1400,6 +1400,7 @@ import ts4 from "typescript";
|
|
|
1400
1400
|
import path4 from "path";
|
|
1401
1401
|
import ts3 from "typescript";
|
|
1402
1402
|
function is_external_module(ctx, source_file, module_path) {
|
|
1403
|
+
if (module_path.startsWith("#")) return false;
|
|
1403
1404
|
const resolved = ts3.resolveModuleName(module_path, source_file.fileName, ctx.program.getCompilerOptions(), ts3.sys);
|
|
1404
1405
|
if (!resolved.resolvedModule) return true;
|
|
1405
1406
|
const resolved_path = path4.resolve(resolved.resolvedModule.resolvedFileName);
|