Skip to content

Commit

Permalink
chore: remove baseUrl from tsconfig.json (#452)
Browse files Browse the repository at this point in the history
* chore: remove baseUrl from tsconfig.json
  • Loading branch information
niktverd authored Aug 10, 2023
1 parent b667d86 commit 9df76dc
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React from 'react';

import {render, screen} from '@testing-library/react';
import {BackgroundImageProps} from 'src/models';

import {testCustomClassName, testCustomStyle} from '../../../../test-utils/shared/common';
import {BackgroundImageProps} from '../../../models';
import BackgroundImage from '../BackgroundImage';

const qa = 'background-image-component';
Expand Down
2 changes: 1 addition & 1 deletion src/components/Link/__stories__/Link.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React, {Fragment} from 'react';

import {Meta, StoryFn} from '@storybook/react';
import {LinkProps} from 'src/models';

import {Col, Row} from '../../../grid';
import {LinkProps} from '../../../models';
import Link, {LinkFullProps} from '../Link';

import data from './data.json';
Expand Down
2 changes: 1 addition & 1 deletion src/components/Media/__stories__/Media.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React from 'react';

import {Meta, StoryFn} from '@storybook/react';
import {MediaProps} from 'src/models';

import {MediaProps} from '../../../models';
import Media, {MediaAllProps} from '../Media';

import data from './data.json';
Expand Down
3 changes: 1 addition & 2 deletions src/components/MetaInfo/MetaInfo.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import React from 'react';

import {ClassNameProps} from 'src/models';

import {ClassNameProps} from '../../models';
import {block} from '../../utils';

import './MetaInfo.scss';
Expand Down
1 change: 0 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"outDir": "build/esm",
"module": "esnext",
"jsx": "react",
"baseUrl": ".",
"resolveJsonModule": true,
"importHelpers": true,
"paths": {
Expand Down

0 comments on commit 9df76dc

Please sign in to comment.