From cfc366ff25b6117d6baa30ee684a77ff4239fe90 Mon Sep 17 00:00:00 2001 From: Dominic Garms Date: Mon, 29 Aug 2022 14:16:02 +0800 Subject: [PATCH] 5.6.0 --- apps/storybook/tsconfig.json | 48 +++++++++++++++++++++++++++++++++++ packages/rhf-mui/package.json | 2 +- 2 files changed, 49 insertions(+), 1 deletion(-) create mode 100644 apps/storybook/tsconfig.json diff --git a/apps/storybook/tsconfig.json b/apps/storybook/tsconfig.json new file mode 100644 index 0000000..3d64b45 --- /dev/null +++ b/apps/storybook/tsconfig.json @@ -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 + } +} \ No newline at end of file diff --git a/packages/rhf-mui/package.json b/packages/rhf-mui/package.json index eebcb60..2c9a814 100644 --- a/packages/rhf-mui/package.json +++ b/packages/rhf-mui/package.json @@ -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",