@rowan-agent/agent 0.9.19 → 0.9.20
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 +4 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5072,7 +5072,10 @@ function getJiti() {
|
|
|
5072
5072
|
sharedJiti ??= createJiti(import.meta.url || process.cwd(), {
|
|
5073
5073
|
fsCache: false,
|
|
5074
5074
|
moduleCache: false,
|
|
5075
|
-
|
|
5075
|
+
// Extensions ship as authored, including TypeScript. Native loading lets a
|
|
5076
|
+
// host that supports it run them without a transpile step; an import that
|
|
5077
|
+
// only the alias map can resolve still falls back to jiti's transform.
|
|
5078
|
+
tryNative: true,
|
|
5076
5079
|
alias: jitiAliases()
|
|
5077
5080
|
});
|
|
5078
5081
|
return sharedJiti;
|