Skip to content

Commit

Permalink
5.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dohomi committed Aug 29, 2022
1 parent 82db475 commit cfc366f
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 1 deletion.
48 changes: 48 additions & 0 deletions apps/storybook/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
"compilerOptions": {
// THIS MUST BE AT ROOT, if you set baseurl in sub-package it breaks intellisense jump to
"baseUrl": ".",
"rootDir": ".",
"outDir": "dist",
"importHelpers": true,
"allowJs": false,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"downlevelIteration": true,
"strict": true,
"esModuleInterop": true,
"preserveSymlinks": true,
"jsx": "react-jsx",
"module": "system",
"moduleResolution": "node",
"noEmitOnError": false,
"noImplicitAny": false,
"noImplicitReturns": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"preserveConstEnums": true,
"removeComments": true,
"skipLibCheck": true,
"sourceMap": false,
"strictNullChecks": true,
"target": "es5",
"types": [
"node",
"react"
],
"lib": [
"dom",
"esnext"
]
},
"exclude": [
"**/test",
"**/dist",
"**/types",
"**/__tests__"
],
"typeAcquisition": {
"enable": true
}
}
2 changes: 1 addition & 1 deletion packages/rhf-mui/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.5.1",
"version": "5.6.0",
"license": "MIT",
"repository": "https://github.com/dohomi/react-hook-form-mui",
"homepage": "https://react-hook-form-material-ui.vercel.app",
Expand Down

0 comments on commit cfc366f

Please sign in to comment.