Skip to content

Commit

Permalink
update to [email protected] and adjust tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
David Maskasky committed Sep 25, 2024
1 parent 391dcad commit 4fb67e1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"html-webpack-plugin": "^5.5.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jotai": "^2.6.3",
"jotai": "^2.10.0",
"microbundle": "^0.15.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
Expand Down
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

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

9 changes: 6 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"esModuleInterop": true,
"module": "es2015",
"moduleResolution": "node",
"allowJs": true,
"allowJs": false,
"skipLibCheck": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noUncheckedIndexedAccess": true,
Expand All @@ -15,7 +16,9 @@
"baseUrl": ".",
"paths": {
"jotai-history": ["./src"]
}
},
"types": ["node", "jest", "react", "react-dom"]
},
"exclude": ["dist"]
"include": ["src/**/*"],
"exclude": ["dist", "node_modules"]
}

0 comments on commit 4fb67e1

Please sign in to comment.