lf
This commit is contained in:
parent
2cd1dfd720
commit
7340443b86
3 changed files with 7 additions and 3 deletions
|
@ -9,5 +9,5 @@ module.exports = {
|
|||
tsconfigRootDir: __dirname,
|
||||
project: "./tsconfig.json",
|
||||
},
|
||||
ignorePatterns: [".eslintrc.js", "out"],
|
||||
ignorePatterns: [".eslintrc.js", "next.config.js", "out"],
|
||||
};
|
||||
|
|
|
@ -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": {
|
||||
|
|
|
@ -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";
|
||||
|
||||
|
|
Loading…
Reference in a new issue