Skip to content

Commit

Permalink
working on fixing github action
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandon-Perry committed Aug 7, 2024
1 parent 7b6d9b5 commit 928911e
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 7 deletions.
2 changes: 1 addition & 1 deletion common/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { z } from "zod";
import * as schema from "./schema";

export const generateApiRequest = z.object({
userConfig: schema.userConfig,
userConfig: schema.llmUserConfig,
data: schema.dataPayload,
});

Expand Down
18 changes: 18 additions & 0 deletions common/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^22.1.0",
"@types/react": "^18.2.67",
"@types/uuid": "^9.0.8",
"typescript": "^5.3.3",
Expand Down
13 changes: 7 additions & 6 deletions common/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"compilerOptions": {
"outDir": "./dist", // Output directory for compiled JS files
"module": "CommonJS", // Use CommonJS modules for Node.js
"target": "es6", // Target ES6 (or a higher version if needed)
"declaration": true, // Generate declaration files
"sourceMap": true, // Generate source maps
"composite": true, // Enable project references,
"outDir": "./dist",
"module": "Node16",
"moduleResolution": "Node16",
"target": "es6",
"declaration": true,
"sourceMap": true,
"composite": true,
"jsx": "react",
"paths": {
"*": ["*", "node_modules/*"]
Expand Down

0 comments on commit 928911e

Please sign in to comment.