mirror of
https://github.com/unjs/unstorage.git
synced 2025-12-08 21:26:09 +00:00
14 lines
241 B
TypeScript
14 lines
241 B
TypeScript
import { defineBuildConfig } from "obuild/config";
|
|
|
|
export default defineBuildConfig({
|
|
entries: [
|
|
"src/index",
|
|
"src/server",
|
|
{
|
|
type: "transform",
|
|
input: "src/drivers/",
|
|
outDir: "dist/drivers",
|
|
},
|
|
],
|
|
});
|