ts-arc 1.1.16 → 1.1.17
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/loader.js +5 -1
- package/package.json +1 -1
package/dist/loader.js
CHANGED
|
@@ -123,8 +123,12 @@ const require = createRequire(import.meta.url);`
|
|
|
123
123
|
shortCircuit: true
|
|
124
124
|
};
|
|
125
125
|
}
|
|
126
|
+
function resolveSync(specifier, context, nextResolve) {
|
|
127
|
+
return nextResolve(specifier, context);
|
|
128
|
+
}
|
|
126
129
|
export {
|
|
127
130
|
initialize,
|
|
128
131
|
load,
|
|
129
|
-
resolve2 as resolve
|
|
132
|
+
resolve2 as resolve,
|
|
133
|
+
resolveSync
|
|
130
134
|
};
|