updated config so to import from src folders easier

This commit is contained in:
Carter 2024-11-14 13:53:24 -06:00
parent b7d859b083
commit 6d71ca75a9
3 changed files with 3 additions and 3 deletions

View file

@ -1,8 +1,7 @@
import { Theme, Typography } from "@mui/material";
import { User } from "../models/user";
import { makeStyles } from "@mui/styles";
import { getSignatureAccentColour } from "../services/whiteLabel";
import { Team } from "../models/team";
import { Team, User } from "models";
const useStyles = makeStyles((theme: Theme) => ({
profileName: {

View file

@ -1,5 +1,6 @@
{
"compilerOptions": {
"baseUrl": "src",
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],

View file

@ -3,5 +3,5 @@
"references": [
{ "path": "./tsconfig.app.json" },
{ "path": "./tsconfig.node.json" }
]
],
}