Skip to content

[WIP] - Add Convex Intagration #243

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
feat: add initial TypeScript configuration and package definition for…
… @repo/convex
  • Loading branch information
Alfredo Jose authored and Alfredo Jose committed Nov 15, 2024
commit 3f8a7e362a9f982b1fcbb764eeab2e5a61f6f15d
13 changes: 13 additions & 0 deletions packages/convex/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "@repo/convex",
"version": "0.0.0",
"private": true,
"dependencies": {
"@repo/env": "workspace:*",
"convex": "^1.9.0"
},
"devDependencies": {
"@repo/typescript-config": "workspace:*",
"typescript": "^5.6.3"
}
}
Empty file added packages/convex/schema.ts
Empty file.
8 changes: 8 additions & 0 deletions packages/convex/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"extends": "@repo/typescript-config/react-library.json",
"compilerOptions": {
"baseUrl": "."
},
"include": ["**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}
Loading