Skip to content

Commit

Permalink
[Chore:web] 빌드 시 eslint 비활성화
Browse files Browse the repository at this point in the history
  • Loading branch information
hoqn committed Oct 12, 2023
1 parent 6af5fb0 commit b19be17
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 4 additions & 0 deletions apps/web/next.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
/** @type {import("next").NextConfig} */
module.exports = {
reactStrictMode: true,
transpilePackages: ["ui"],
eslint: {
ignoreDuringBuilds: true,
},
};
4 changes: 1 addition & 3 deletions packages/ui/@types/props.d.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import type { HTMLAttributes } from "react";

declare global {
export interface BaseProps {
className?: HTMLAttributes<HTMLElement>["className"];
}
export type BaseProps = Pick<HTMLAttributes<HTMLElement>, "className">;
}

export {};

0 comments on commit b19be17

Please sign in to comment.