Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
amcdnl committed Jun 2, 2023
1 parent fa4e0bd commit ac86a82
Show file tree
Hide file tree
Showing 3 changed files with 242 additions and 3 deletions.
3 changes: 2 additions & 1 deletion package.json
Expand Up @@ -47,6 +47,7 @@
},
"homepage": "https://github.com/reaviz/reaflow#readme",
"dependencies": {
"@juggle/resize-observer": "^3.3.1",
"calculate-size": "^1.1.1",
"classnames": "^2.3.1",
"d3-shape": "^3.0.1",
Expand All @@ -57,7 +58,6 @@
"kld-intersections": "^0.7.0",
"p-cancelable": "^3.0.0",
"rdk": "^6.5.0",
"@juggle/resize-observer": "^3.3.1",
"react-cool-dimensions": "^2.0.7",
"react-fast-compare": "^3.2.2",
"react-use-gesture": "^8.0.1",
Expand Down Expand Up @@ -93,6 +93,7 @@
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.12",
"husky": "^8.0.0",
"jsdom": "^22.1.0",
"lint-staged": "^13.2.2",
"postcss-nested": "^6.0.1",
"postcss-preset-env": "^8.4.2",
Expand Down
10 changes: 9 additions & 1 deletion tsconfig.json
Expand Up @@ -2,6 +2,10 @@
"compilerOptions": {
"target": "ES2015",
"module": "ESNext",
"types": [
"vite/client",
"vitest/globals"
],
"lib": ["dom", "dom.iterable", "esnext"],
"jsx": "react-jsx",
"moduleResolution": "node",
Expand Down Expand Up @@ -30,5 +34,9 @@
},
"types": ["node"],
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
"exclude": [
"node_modules",
"dist",
"storybook-static"
]
}

0 comments on commit ac86a82

Please sign in to comment.