removed absolute imports from lite-text-editor

This commit is contained in:
Palanikannan1437 2023-10-03 09:30:11 +05:30
parent 857fa18719
commit 0080880852
4 changed files with 6 additions and 11 deletions

View File

@ -1,2 +1,2 @@
export { LiteTextEditor, LiteTextEditorWithRef } from "@/ui";
export { LiteReadOnlyEditor, LiteReadOnlyEditorWithRef } from "@/ui/read-only";
export { LiteTextEditor, LiteTextEditorWithRef } from "./ui";
export { LiteReadOnlyEditor, LiteReadOnlyEditorWithRef } from "./ui/read-only";

View File

@ -1,5 +1,5 @@
import { EnterKeyExtension } from "./enter-key-extension";
export const LiteTextEditorExtensions = () => [
EnterKeyExtension,
];
EnterKeyExtension,
];

View File

@ -3,7 +3,7 @@ import { BoldIcon, ItalicIcon, UnderlineIcon, StrikethroughIcon, CodeIcon } from
import { cn } from "@plane/editor-core";
import { Icon } from "./icon";
import { Tooltip } from "@/ui/tooltip";
import { Tooltip } from "../../tooltip";
export interface BubbleMenuItem {
name: string;

View File

@ -10,11 +10,6 @@
"node_modules"
],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
]
}
"baseUrl": "."
}
}