This commit is contained in:
Manav Rathi 2024-05-24 18:55:37 +05:30
parent 2cd1dfd720
commit 7340443b86
No known key found for this signature in database
3 changed files with 7 additions and 3 deletions

View file

@ -9,5 +9,5 @@ module.exports = {
tsconfigRootDir: __dirname,
project: "./tsconfig.json",
},
ignorePatterns: [".eslintrc.js", "out"],
ignorePatterns: [".eslintrc.js", "next.config.js", "out"],
};

View file

@ -1,6 +1,10 @@
{
"extends": "@/build-config/tsconfig-next.json",
"include": ["src", "../../packages/shared/themes/mui-theme.d.ts"],
"include": [
"src",
"next-env.d.ts",
"../../packages/shared/themes/mui-theme.d.ts"
],
// Temporarily disable some things to get the existing code to compile
// without warnings.
"compilerOptions": {

View file

@ -2,12 +2,12 @@ import CloseIcon from "@mui/icons-material/Close";
import {
Box,
Button,
type ButtonProps,
Snackbar,
Stack,
SxProps,
Theme,
Typography,
type ButtonProps,
} from "@mui/material";
import { NotificationAttributes } from "types/Notification";