main page

This commit is contained in:
2025-12-17 17:55:13 +01:00
commit 7fb446c53a
8943 changed files with 1209030 additions and 0 deletions

31
node_modules/appwrite/rollup.config.js generated vendored Normal file
View File

@@ -0,0 +1,31 @@
import pkg from "./package.json";
import typescript from "@rollup/plugin-typescript";
export default {
external: Object.keys(pkg.dependencies),
input: "src/index.ts",
plugins: [typescript()],
output: [
{
format: "cjs",
file: pkg.main,
esModule: false,
sourcemap: true,
},
{
format: "es",
file: pkg.module,
sourcemap: true,
},
{
format: "iife",
file: pkg.jsdelivr,
name: "Appwrite",
extend: true,
globals: {
"cross-fetch": "window",
"FormData": "FormData",
},
},
],
};