first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

31
node_modules/@expo/require-utils/build/transform.js generated vendored Normal file
View File

@@ -0,0 +1,31 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.toCommonJS = toCommonJS;
function _core() {
const data = require("@babel/core");
_core = function () {
return data;
};
return data;
}
function toCommonJS(filename, code) {
const result = (0, _core().transformSync)(code, {
filename,
babelrc: false,
plugins: [[require('@babel/plugin-transform-modules-commonjs'), {
// NOTE(@kitten): We used to use sucrase to transform, which is why
// we're doing this CJS-to-ESM transform in the first place. Our
// previous transformation isn't 100% compatible with the standard
// Node ESM loading. In Babel, this is the "node" flag (although
// node behaviour is explicitly different from this). This skips
// the `__esModule -> default` wrapper
importInterop: 'node',
loose: true
}]]
});
return result?.code ?? code;
}
//# sourceMappingURL=transform.js.map