Skip to content

Commit

Permalink
fix: removing path alias
Browse files Browse the repository at this point in the history
  • Loading branch information
Sampaio Leal committed Jun 20, 2022
1 parent 1c274b9 commit 8d2813c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 12 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@euk-labs/componentz",
"version": "0.5.10",
"version": "0.5.11",
"main": "./cjs/index.js",
"module": "./index.js",
"types": "./index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/hooks/useUIStore.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { UIStoreType } from '@stores/UIStore';
import { useInjection } from 'inversify-react';
import Bindings from '../containers/global.bindings';
import { UIStoreType } from '../stores';

/**
* Hook to get the global instance of UIStore
Expand Down
2 changes: 1 addition & 1 deletion src/stores/internal/AppBarStore.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Page } from '@components/AppBar/types';
import { makeAutoObservable } from 'mobx';
import { ReactNode } from 'react';
import { Page } from '../../components/AppBar/types';

export interface AppBarStoreType {
pages: Page[];
Expand Down
9 changes: 0 additions & 9 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,6 @@
"strict": true,
"skipLibCheck": true,
"types": ["jest"],
"baseUrl": "src",
"paths": {
"@containers/*": ["./containers/*"],
"@components": ["./components/index"],
"@components/*": ["./components/*"],
"@stores/*": ["./stores/*"],
"@hooks/*": ["./hooks/*"]
},

// Build Options
"declaration": true,
"declarationDir": "./lib"
Expand Down

0 comments on commit 8d2813c

Please sign in to comment.