Skip to content

Commit cfc366f

Browse files
committed
5.6.0
1 parent 82db475 commit cfc366f

2 files changed

Lines changed: 49 additions & 1 deletion

File tree

apps/storybook/tsconfig.json

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
{
2+
"compilerOptions": {
3+
// THIS MUST BE AT ROOT, if you set baseurl in sub-package it breaks intellisense jump to
4+
"baseUrl": ".",
5+
"rootDir": ".",
6+
"outDir": "dist",
7+
"importHelpers": true,
8+
"allowJs": false,
9+
"allowSyntheticDefaultImports": true,
10+
"forceConsistentCasingInFileNames": true,
11+
"declaration": true,
12+
"downlevelIteration": true,
13+
"strict": true,
14+
"esModuleInterop": true,
15+
"preserveSymlinks": true,
16+
"jsx": "react-jsx",
17+
"module": "system",
18+
"moduleResolution": "node",
19+
"noEmitOnError": false,
20+
"noImplicitAny": false,
21+
"noImplicitReturns": false,
22+
"noUnusedLocals": false,
23+
"noUnusedParameters": false,
24+
"preserveConstEnums": true,
25+
"removeComments": true,
26+
"skipLibCheck": true,
27+
"sourceMap": false,
28+
"strictNullChecks": true,
29+
"target": "es5",
30+
"types": [
31+
"node",
32+
"react"
33+
],
34+
"lib": [
35+
"dom",
36+
"esnext"
37+
]
38+
},
39+
"exclude": [
40+
"**/test",
41+
"**/dist",
42+
"**/types",
43+
"**/__tests__"
44+
],
45+
"typeAcquisition": {
46+
"enable": true
47+
}
48+
}

packages/rhf-mui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.5.1",
2+
"version": "5.6.0",
33
"license": "MIT",
44
"repository": "https://github.com/dohomi/react-hook-form-mui",
55
"homepage": "https://react-hook-form-material-ui.vercel.app",

0 commit comments

Comments
 (0)