We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71180ba commit 0b4e677Copy full SHA for 0b4e677
packages/plugin-letzai/src/index.ts
@@ -258,7 +258,7 @@ export const letzAiImageGeneration = {
258
],
259
};
260
261
-const letzAIPlugin = {
+export const letzAIPlugin = {
262
name: "letzai",
263
actions: [letzAiImageGeneration],
264
packages/plugin-letzai/tsconfig.json
@@ -2,12 +2,10 @@
2
"extends": "../core/tsconfig.json",
3
"compilerOptions": {
4
"outDir": "dist",
5
- "rootDir": "src",
6
- "types": [
7
- "node"
8
- ]
+ "rootDir": "./src",
+ "declaration": true
9
},
10
"include": [
11
- "src/**/*.ts"
+ "src"
12
]
13
}
packages/plugin-letzai/tsup.config.ts
@@ -15,7 +15,6 @@ export default defineConfig({
15
"https",
16
"http",
17
"agentkeepalive",
18
- "zod",
19
// Add other modules you want to externalize
20
21
});
0 commit comments