Initial commit

This commit is contained in:
2025-03-07 19:22:02 +01:00
commit 4a98255d83
55743 changed files with 5280367 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
import path from "path";
import webpackBundler from "monosize-bundler-webpack";
import upstashStorage from "monosize-storage-upstash";
export default {
repository: "https://github.com/microsoft/use-disposable",
storage: upstashStorage({
url: "https://usw1-bursting-skylark-33255.upstash.io",
readonlyToken:
"AoHnASQgYzI2ZTFiN2YtN2VkNi00YWFjLTkyYTQtNDE4YzRlNGE2NGVlX3VGKBPwppebs7tkUrzjh4xy3kj5xcSi_pq35F_n9As=",
}),
bundler: webpackBundler((config) => {
return {
...config,
resolve: {
...config.resolve,
alias: {
"use-disposable": path.resolve(
new URL(".", import.meta.url).pathname,
"./lib/index.js",
),
},
},
};
}),
};