Skip to content

Commit

Permalink
fix: fixed tsconfig paths
Browse files Browse the repository at this point in the history
  • Loading branch information
gearonix committed Aug 18, 2023
1 parent f40c70b commit 8378454
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
5 changes: 2 additions & 3 deletions apps/client/src/widgets/sign-in-modal/ui/sign-in-modal.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
import { SignInForm } from '$/common-types'
import { Modal } from '$/ui'
import { observer } from 'mobx-react-lite'
import { useNavigate } from 'react-router-dom'

import { SignInModalTemplate } from '@/entities/sign-in-modal-template'
import { useStore } from '@/shared/hooks'
import { WrongPassword } from '@/widgets/sign-in-modal/lib/exceptions'
import { SignInForm } from '@/widgets/sign-in-modal/types'

import {
Modal,
NotificationsProvider,
RoutePaths,
useFilteredEffect,
Expand Down
2 changes: 1 addition & 1 deletion libs/ui/src/modal/ui/modal.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
flex,
shadow,
wh
} from '@/styles'
} from '$/styles'

export const ModalBackground = styled.div`
${flex('center', 'center')};
Expand Down
2 changes: 1 addition & 1 deletion libs/ui/src/popover/ui/popover.styles.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import styled from 'styled-components'

import { color, customScrollbar } from '@/styles'
import { color, customScrollbar } from '$/styles'

interface PopoverStylesProps {
readonly $bottom: number
Expand Down
5 changes: 3 additions & 2 deletions libs/ui/tsconfig.lib.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@
],
"baseUrl": ".",
"paths": {
"@/*": "src/*",
"$/client-shared": ["../client-shared/src/index.ts"]
"@/*": ["src/*"],
"$/client-shared": ["../client-shared/src/index.ts"],
"$/styles": ["../client-shared/src/styles/index.ts"]
}
},
"files": [
Expand Down

0 comments on commit 8378454

Please sign in to comment.