deepagents-s3-backend 1.8.0

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/tsconfig.json ADDED
@@ -0,0 +1,8 @@
1
+ {
2
+ "extends": "../../tsconfig.json",
3
+ "compilerOptions": {
4
+ "outDir": "dist"
5
+ },
6
+ "include": ["src/index.ts"],
7
+ "exclude": ["src/index.test.ts", "node_modules"]
8
+ }
@@ -0,0 +1,33 @@
1
+ import { defineConfig } from "tsdown";
2
+
3
+ // Mark all node_modules as external since this is a library
4
+ const neverBundle = [/^[^./]/];
5
+
6
+ export default defineConfig([
7
+ {
8
+ entry: ["./src/index.ts"],
9
+ format: ["esm"],
10
+ dts: true,
11
+ clean: true,
12
+ sourcemap: true,
13
+ minify: true,
14
+ outDir: "dist",
15
+ outExtensions: () => ({ js: ".js" }),
16
+ deps: {
17
+ neverBundle,
18
+ },
19
+ },
20
+ {
21
+ entry: ["./src/index.ts"],
22
+ format: ["cjs"],
23
+ dts: true,
24
+ clean: true,
25
+ sourcemap: true,
26
+ minify: true,
27
+ outDir: "dist",
28
+ outExtensions: () => ({ js: ".cjs" }),
29
+ deps: {
30
+ neverBundle,
31
+ },
32
+ },
33
+ ]);