Skip to content

Commit

Permalink
revert vara-ui type checking fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitayutanov committed Jan 21, 2025
1 parent 70f8c6f commit f0a662d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions utils/vara-ui/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { resolve } from 'path';
import { defineConfig } from 'vite';
import svgr from 'vite-plugin-svgr';
import dts from 'vite-plugin-dts';
import checker from 'vite-plugin-checker';

// https://vitejs.dev/config/
export default defineConfig(({ mode }) => {
Expand All @@ -12,7 +11,7 @@ export default defineConfig(({ mode }) => {
const outDir = mode === 'deprecated' ? 'dist-temp' : 'dist';

return {
plugins: [react(), svgr(), dts({ outDir }), checker({ typescript: true })],
plugins: [react(), svgr(), dts({ outDir })],
build: {
lib: {
entry: resolve(__dirname, `src/components/${mode === 'deprecated' ? 'index-deprecated' : 'index'}.ts`),
Expand Down

0 comments on commit f0a662d

Please sign in to comment.