Skip to content

Commit

Permalink
deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
columbia-facts committed Apr 28, 2024
1 parent f34a675 commit 63fbcf1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/edges/customEdge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ type CustomEdgeData = {
onClick?: () => void;
};


const CustomEdge: FC<EdgeProps<CustomEdgeData>> = ({
id,
sourceX,
Expand Down
6 changes: 5 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
Expand All @@ -20,6 +24,6 @@
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src"],
"include": ["src/**/*"],
"references": [{ "path": "./tsconfig.node.json" }]
}
4 changes: 4 additions & 0 deletions tsconfig.node.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"composite": true,
"skipLibCheck": true,
"module": "ESNext",
Expand Down

0 comments on commit 63fbcf1

Please sign in to comment.