diff --git a/apps/web/core/components/issues/issue-modal/context/issue-modal-context.tsx b/apps/web/core/components/issues/issue-modal/context/issue-modal-context.tsx index 40ee76539..fa7ea1ab0 100644 --- a/apps/web/core/components/issues/issue-modal/context/issue-modal-context.tsx +++ b/apps/web/core/components/issues/issue-modal/context/issue-modal-context.tsx @@ -12,7 +12,7 @@ import type { EditorRefApi } from "@plane/editor"; import type { ISearchIssueResponse, TIssue } from "@plane/types"; // plane web imports import type { TIssuePropertyValues, TIssuePropertyValueErrors } from "@/plane-web/types/issue-types"; -import type { TIssueFields } from "ce/components/issues/issue-modal"; +import type { TIssueFields } from "@/plane-web/components/issues/issue-modal"; export type TPropertyValuesValidationProps = { projectId: string | null; diff --git a/apps/web/core/components/settings/profile/content/pages/preferences/default-list.tsx b/apps/web/core/components/settings/profile/content/pages/preferences/default-list.tsx index 9f780ab31..8b3b010fc 100644 --- a/apps/web/core/components/settings/profile/content/pages/preferences/default-list.tsx +++ b/apps/web/core/components/settings/profile/content/pages/preferences/default-list.tsx @@ -6,7 +6,7 @@ import { observer } from "mobx-react"; // components -import { ThemeSwitcher } from "ce/components/preferences/theme-switcher"; +import { ThemeSwitcher } from "@/plane-web/components/preferences/theme-switcher"; export const ProfileSettingsDefaultPreferencesList = observer(function ProfileSettingsDefaultPreferencesList() { return ( diff --git a/apps/web/core/store/workspace/home.ts b/apps/web/core/store/workspace/home.ts index ebe38f025..de4099dd4 100644 --- a/apps/web/core/store/workspace/home.ts +++ b/apps/web/core/store/workspace/home.ts @@ -9,7 +9,7 @@ import { action, computed, makeObservable, observable, runInAction } from "mobx" // plane imports import type { THomeWidgetKeys, TWidgetEntityData } from "@plane/types"; // plane web services -import { WorkspaceService } from "@/plane-web/services"; +import { WorkspaceService } from "@/services/workspace.service"; // store import type { IWorkspaceLinkStore } from "./link.store"; import { WorkspaceLinkStore } from "./link.store"; diff --git a/apps/web/core/store/workspace/index.ts b/apps/web/core/store/workspace/index.ts index a74f088a9..746c86999 100644 --- a/apps/web/core/store/workspace/index.ts +++ b/apps/web/core/store/workspace/index.ts @@ -15,7 +15,7 @@ import type { IWorkspaceUserPropertiesResponse, } from "@plane/types"; // services -import { WorkspaceService } from "@/plane-web/services"; +import { WorkspaceService } from "@/services/workspace.service"; // store import type { CoreRootStore } from "@/store/root.store"; // sub-stores diff --git a/apps/web/core/store/workspace/link.store.ts b/apps/web/core/store/workspace/link.store.ts index e5eeadd73..3b6ead0d2 100644 --- a/apps/web/core/store/workspace/link.store.ts +++ b/apps/web/core/store/workspace/link.store.ts @@ -9,7 +9,7 @@ import { action, makeObservable, observable, runInAction } from "mobx"; // types import type { TLink, TLinkIdMap, TLinkMap } from "@plane/types"; // services -import { WorkspaceService } from "@/plane-web/services"; +import { WorkspaceService } from "@/services/workspace.service"; export interface IWorkspaceLinkStoreActions { addLinks: (projectId: string, links: TLink[]) => void; diff --git a/apps/web/ee/components/active-cycles/index.ts b/apps/web/ee/components/active-cycles/index.ts deleted file mode 100644 index aff0690a0..000000000 --- a/apps/web/ee/components/active-cycles/index.ts +++ /dev/null @@ -1,8 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "./root"; -export * from "./workspace-active-cycles-upgrade"; diff --git a/apps/web/ee/components/active-cycles/root.tsx b/apps/web/ee/components/active-cycles/root.tsx deleted file mode 100644 index 4b53728fa..000000000 --- a/apps/web/ee/components/active-cycles/root.tsx +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/active-cycles/root"; diff --git a/apps/web/ee/components/active-cycles/workspace-active-cycles-upgrade.tsx b/apps/web/ee/components/active-cycles/workspace-active-cycles-upgrade.tsx deleted file mode 100644 index 49fe48943..000000000 --- a/apps/web/ee/components/active-cycles/workspace-active-cycles-upgrade.tsx +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/active-cycles/workspace-active-cycles-upgrade"; diff --git a/apps/web/ee/components/app-rail/index.ts b/apps/web/ee/components/app-rail/index.ts deleted file mode 100644 index df5c68063..000000000 --- a/apps/web/ee/components/app-rail/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/app-rail"; diff --git a/apps/web/ee/components/comments/index.ts b/apps/web/ee/components/comments/index.ts deleted file mode 100644 index c447172cf..000000000 --- a/apps/web/ee/components/comments/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/comments"; diff --git a/apps/web/ee/components/common/extended-app-header.tsx b/apps/web/ee/components/common/extended-app-header.tsx deleted file mode 100644 index fc2260055..000000000 --- a/apps/web/ee/components/common/extended-app-header.tsx +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/common/extended-app-header"; diff --git a/apps/web/ee/components/common/index.ts b/apps/web/ee/components/common/index.ts deleted file mode 100644 index 94a605e38..000000000 --- a/apps/web/ee/components/common/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "./extended-app-header"; diff --git a/apps/web/ee/components/cycles/active-cycle/index.ts b/apps/web/ee/components/cycles/active-cycle/index.ts deleted file mode 100644 index 9e9af3eb0..000000000 --- a/apps/web/ee/components/cycles/active-cycle/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/cycles/active-cycle"; diff --git a/apps/web/ee/components/cycles/analytics-sidebar/index.ts b/apps/web/ee/components/cycles/analytics-sidebar/index.ts deleted file mode 100644 index 28d3f5bac..000000000 --- a/apps/web/ee/components/cycles/analytics-sidebar/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/cycles/analytics-sidebar"; diff --git a/apps/web/ee/components/cycles/end-cycle/index.ts b/apps/web/ee/components/cycles/end-cycle/index.ts deleted file mode 100644 index c77fdb0ba..000000000 --- a/apps/web/ee/components/cycles/end-cycle/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/cycles/end-cycle"; diff --git a/apps/web/ee/components/cycles/index.ts b/apps/web/ee/components/cycles/index.ts deleted file mode 100644 index 07ff197d3..000000000 --- a/apps/web/ee/components/cycles/index.ts +++ /dev/null @@ -1,10 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "./active-cycle"; -export * from "./analytics-sidebar"; -export * from "./end-cycle"; -export * from "ce/components/cycles/additional-actions"; diff --git a/apps/web/ee/components/estimates/estimate-list-item-buttons.tsx b/apps/web/ee/components/estimates/estimate-list-item-buttons.tsx deleted file mode 100644 index 68caf0563..000000000 --- a/apps/web/ee/components/estimates/estimate-list-item-buttons.tsx +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/estimates/estimate-list-item-buttons"; diff --git a/apps/web/ee/components/estimates/index.ts b/apps/web/ee/components/estimates/index.ts deleted file mode 100644 index f48ec6b88..000000000 --- a/apps/web/ee/components/estimates/index.ts +++ /dev/null @@ -1,9 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "./estimate-list-item-buttons"; -export * from "./update"; -export * from "./points"; diff --git a/apps/web/ee/components/estimates/points/delete.tsx b/apps/web/ee/components/estimates/points/delete.tsx deleted file mode 100644 index c6bf09416..000000000 --- a/apps/web/ee/components/estimates/points/delete.tsx +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/estimates/points/delete"; diff --git a/apps/web/ee/components/estimates/points/index.ts b/apps/web/ee/components/estimates/points/index.ts deleted file mode 100644 index c83c4600f..000000000 --- a/apps/web/ee/components/estimates/points/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "./delete"; diff --git a/apps/web/ee/components/estimates/update/index.ts b/apps/web/ee/components/estimates/update/index.ts deleted file mode 100644 index dd65a9ec3..000000000 --- a/apps/web/ee/components/estimates/update/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "./modal"; diff --git a/apps/web/ee/components/estimates/update/modal.tsx b/apps/web/ee/components/estimates/update/modal.tsx deleted file mode 100644 index 8f1f8d8f1..000000000 --- a/apps/web/ee/components/estimates/update/modal.tsx +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/estimates/update/modal"; diff --git a/apps/web/ee/components/gantt-chart/blocks/block-row-list.tsx b/apps/web/ee/components/gantt-chart/blocks/block-row-list.tsx deleted file mode 100644 index 76cea099b..000000000 --- a/apps/web/ee/components/gantt-chart/blocks/block-row-list.tsx +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/gantt-chart/blocks/block-row-list"; diff --git a/apps/web/ee/components/gantt-chart/blocks/blocks-list.tsx b/apps/web/ee/components/gantt-chart/blocks/blocks-list.tsx deleted file mode 100644 index 8a607663c..000000000 --- a/apps/web/ee/components/gantt-chart/blocks/blocks-list.tsx +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/gantt-chart/blocks/blocks-list"; diff --git a/apps/web/ee/components/gantt-chart/index.ts b/apps/web/ee/components/gantt-chart/index.ts deleted file mode 100644 index fb6a04144..000000000 --- a/apps/web/ee/components/gantt-chart/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/gantt-chart"; diff --git a/apps/web/ee/components/global/index.ts b/apps/web/ee/components/global/index.ts deleted file mode 100644 index 6947f1fd0..000000000 --- a/apps/web/ee/components/global/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/global"; diff --git a/apps/web/ee/components/home/header.tsx b/apps/web/ee/components/home/header.tsx deleted file mode 100644 index 5fab95735..000000000 --- a/apps/web/ee/components/home/header.tsx +++ /dev/null @@ -1,9 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export function HomePageHeader() { - return <>; -} diff --git a/apps/web/ee/components/home/index.ts b/apps/web/ee/components/home/index.ts deleted file mode 100644 index 1f03dabb1..000000000 --- a/apps/web/ee/components/home/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/home"; diff --git a/apps/web/ee/components/inbox/source-pill.tsx b/apps/web/ee/components/inbox/source-pill.tsx deleted file mode 100644 index d9107571e..000000000 --- a/apps/web/ee/components/inbox/source-pill.tsx +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/inbox/source-pill"; diff --git a/apps/web/ee/components/instance/index.ts b/apps/web/ee/components/instance/index.ts deleted file mode 100644 index 3950e9687..000000000 --- a/apps/web/ee/components/instance/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/instance"; diff --git a/apps/web/ee/components/instance/maintenance-message.tsx b/apps/web/ee/components/instance/maintenance-message.tsx deleted file mode 100644 index 5b67e13df..000000000 --- a/apps/web/ee/components/instance/maintenance-message.tsx +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/instance/maintenance-message"; diff --git a/apps/web/ee/components/issues/issue-details/sidebar/transfer-hop-info.tsx b/apps/web/ee/components/issues/issue-details/sidebar/transfer-hop-info.tsx deleted file mode 100644 index f7fc58efa..000000000 --- a/apps/web/ee/components/issues/issue-details/sidebar/transfer-hop-info.tsx +++ /dev/null @@ -1,5 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ diff --git a/apps/web/ee/components/navigations/index.ts b/apps/web/ee/components/navigations/index.ts deleted file mode 100644 index e7d49af84..000000000 --- a/apps/web/ee/components/navigations/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/navigations"; diff --git a/apps/web/ee/components/pages/index.ts b/apps/web/ee/components/pages/index.ts deleted file mode 100644 index 13c68e076..000000000 --- a/apps/web/ee/components/pages/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/pages"; diff --git a/apps/web/ee/components/projects/create/attributes.tsx b/apps/web/ee/components/projects/create/attributes.tsx deleted file mode 100644 index 03bd73819..000000000 --- a/apps/web/ee/components/projects/create/attributes.tsx +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/projects/create/attributes"; diff --git a/apps/web/ee/components/projects/create/root.tsx b/apps/web/ee/components/projects/create/root.tsx deleted file mode 100644 index 32490e4d0..000000000 --- a/apps/web/ee/components/projects/create/root.tsx +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/projects/create/root"; diff --git a/apps/web/ee/components/projects/header.tsx b/apps/web/ee/components/projects/header.tsx deleted file mode 100644 index dc6f0882d..000000000 --- a/apps/web/ee/components/projects/header.tsx +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/projects/header"; diff --git a/apps/web/ee/components/projects/mobile-header.tsx b/apps/web/ee/components/projects/mobile-header.tsx deleted file mode 100644 index 862782632..000000000 --- a/apps/web/ee/components/projects/mobile-header.tsx +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/projects/mobile-header"; diff --git a/apps/web/ee/components/projects/page.tsx b/apps/web/ee/components/projects/page.tsx deleted file mode 100644 index 1e5a6e6e6..000000000 --- a/apps/web/ee/components/projects/page.tsx +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/projects/page"; diff --git a/apps/web/ee/components/projects/settings/features-list.tsx b/apps/web/ee/components/projects/settings/features-list.tsx deleted file mode 100644 index f256288ae..000000000 --- a/apps/web/ee/components/projects/settings/features-list.tsx +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export { ProjectFeaturesList } from "@/components/project/settings/features-list"; diff --git a/apps/web/ee/components/projects/settings/useProjectColumns.tsx b/apps/web/ee/components/projects/settings/useProjectColumns.tsx deleted file mode 100644 index c697d0d24..000000000 --- a/apps/web/ee/components/projects/settings/useProjectColumns.tsx +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/projects/settings/useProjectColumns"; diff --git a/apps/web/ee/components/relations/index.tsx b/apps/web/ee/components/relations/index.tsx deleted file mode 100644 index 7c548c6e8..000000000 --- a/apps/web/ee/components/relations/index.tsx +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/relations"; diff --git a/apps/web/ee/components/sidebar/index.ts b/apps/web/ee/components/sidebar/index.ts deleted file mode 100644 index 445e539a5..000000000 --- a/apps/web/ee/components/sidebar/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/sidebar"; diff --git a/apps/web/ee/components/views/access-controller.tsx b/apps/web/ee/components/views/access-controller.tsx deleted file mode 100644 index b2392811d..000000000 --- a/apps/web/ee/components/views/access-controller.tsx +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/views/access-controller"; diff --git a/apps/web/ee/components/views/filters/access-filter.tsx b/apps/web/ee/components/views/filters/access-filter.tsx deleted file mode 100644 index 2a71d7d53..000000000 --- a/apps/web/ee/components/views/filters/access-filter.tsx +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/views/filters/access-filter"; diff --git a/apps/web/ee/components/views/publish/index.ts b/apps/web/ee/components/views/publish/index.ts deleted file mode 100644 index 96fa5973d..000000000 --- a/apps/web/ee/components/views/publish/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/views/publish"; diff --git a/apps/web/ee/components/workflow/index.ts b/apps/web/ee/components/workflow/index.ts deleted file mode 100644 index c7526fcf7..000000000 --- a/apps/web/ee/components/workflow/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/components/workflow"; diff --git a/apps/web/ee/constants/index.ts b/apps/web/ee/constants/index.ts deleted file mode 100644 index 4d836788d..000000000 --- a/apps/web/ee/constants/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "./sidebar-favorites"; diff --git a/apps/web/ee/constants/project/index.ts b/apps/web/ee/constants/project/index.ts deleted file mode 100644 index 5b516d903..000000000 --- a/apps/web/ee/constants/project/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "./settings"; diff --git a/apps/web/ee/constants/project/settings/features.tsx b/apps/web/ee/constants/project/settings/features.tsx deleted file mode 100644 index 83c8b0f8e..000000000 --- a/apps/web/ee/constants/project/settings/features.tsx +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/constants/project/settings/features"; diff --git a/apps/web/ee/constants/project/settings/index.ts b/apps/web/ee/constants/project/settings/index.ts deleted file mode 100644 index e9201fe43..000000000 --- a/apps/web/ee/constants/project/settings/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "./features"; diff --git a/apps/web/ee/constants/sidebar-favorites.ts b/apps/web/ee/constants/sidebar-favorites.ts deleted file mode 100644 index 8d96327ce..000000000 --- a/apps/web/ee/constants/sidebar-favorites.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/constants/sidebar-favorites"; diff --git a/apps/web/ee/helpers/command-palette.ts b/apps/web/ee/helpers/command-palette.ts deleted file mode 100644 index 4e0046006..000000000 --- a/apps/web/ee/helpers/command-palette.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/helpers/command-palette"; diff --git a/apps/web/ee/helpers/epic-analytics.ts b/apps/web/ee/helpers/epic-analytics.ts deleted file mode 100644 index d26658642..000000000 --- a/apps/web/ee/helpers/epic-analytics.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/helpers/epic-analytics"; diff --git a/apps/web/ee/helpers/instance.helper.ts b/apps/web/ee/helpers/instance.helper.ts deleted file mode 100644 index cde7a48c7..000000000 --- a/apps/web/ee/helpers/instance.helper.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/helpers/instance.helper"; diff --git a/apps/web/ee/helpers/issue-action-helper.ts b/apps/web/ee/helpers/issue-action-helper.ts deleted file mode 100644 index c9cd8961e..000000000 --- a/apps/web/ee/helpers/issue-action-helper.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/helpers/issue-action-helper"; diff --git a/apps/web/ee/helpers/issue-filter.helper.ts b/apps/web/ee/helpers/issue-filter.helper.ts deleted file mode 100644 index 9df1a48bd..000000000 --- a/apps/web/ee/helpers/issue-filter.helper.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/helpers/issue-filter.helper"; diff --git a/apps/web/ee/helpers/project-settings.ts b/apps/web/ee/helpers/project-settings.ts deleted file mode 100644 index 6f0431644..000000000 --- a/apps/web/ee/helpers/project-settings.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/helpers/project-settings"; diff --git a/apps/web/ee/helpers/workspace.helper.ts b/apps/web/ee/helpers/workspace.helper.ts deleted file mode 100644 index 75bab5459..000000000 --- a/apps/web/ee/helpers/workspace.helper.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/helpers/workspace.helper"; diff --git a/apps/web/ee/hooks/app-rail/index.ts b/apps/web/ee/hooks/app-rail/index.ts deleted file mode 100644 index 6e07a2d6e..000000000 --- a/apps/web/ee/hooks/app-rail/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/hooks/app-rail"; diff --git a/apps/web/ee/hooks/store/index.ts b/apps/web/ee/hooks/store/index.ts deleted file mode 100644 index 093d52e46..000000000 --- a/apps/web/ee/hooks/store/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/hooks/store"; diff --git a/apps/web/ee/hooks/use-additional-editor-mention.tsx b/apps/web/ee/hooks/use-additional-editor-mention.tsx deleted file mode 100644 index fc54bff52..000000000 --- a/apps/web/ee/hooks/use-additional-editor-mention.tsx +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "@/plane-web/hooks/use-additional-editor-mention"; diff --git a/apps/web/ee/hooks/use-additional-favorite-item-details.ts b/apps/web/ee/hooks/use-additional-favorite-item-details.ts deleted file mode 100644 index d7a890b07..000000000 --- a/apps/web/ee/hooks/use-additional-favorite-item-details.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/hooks/use-additional-favorite-item-details"; diff --git a/apps/web/ee/hooks/use-editor-flagging.ts b/apps/web/ee/hooks/use-editor-flagging.ts deleted file mode 100644 index b2e5e66b5..000000000 --- a/apps/web/ee/hooks/use-editor-flagging.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/hooks/use-editor-flagging"; diff --git a/apps/web/ee/hooks/use-file-size.ts b/apps/web/ee/hooks/use-file-size.ts deleted file mode 100644 index 2aa1a2ea1..000000000 --- a/apps/web/ee/hooks/use-file-size.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/hooks/use-file-size"; diff --git a/apps/web/ee/hooks/use-issue-embed.tsx b/apps/web/ee/hooks/use-issue-embed.tsx deleted file mode 100644 index 0ce96673a..000000000 --- a/apps/web/ee/hooks/use-issue-embed.tsx +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/hooks/use-issue-embed"; diff --git a/apps/web/ee/hooks/use-issue-properties.tsx b/apps/web/ee/hooks/use-issue-properties.tsx deleted file mode 100644 index 3654ab433..000000000 --- a/apps/web/ee/hooks/use-issue-properties.tsx +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/hooks/use-issue-properties"; diff --git a/apps/web/ee/hooks/use-page-flag.ts b/apps/web/ee/hooks/use-page-flag.ts deleted file mode 100644 index b54821dff..000000000 --- a/apps/web/ee/hooks/use-page-flag.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/hooks/use-page-flag"; diff --git a/apps/web/ee/hooks/use-timeline-chart.ts b/apps/web/ee/hooks/use-timeline-chart.ts deleted file mode 100644 index f03866680..000000000 --- a/apps/web/ee/hooks/use-timeline-chart.ts +++ /dev/null @@ -1,9 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -// For now, just re-export from CE -// In the future, you can extend the timeline store mapping here for EE-specific timeline types -export * from "ce/hooks/use-timeline-chart"; diff --git a/apps/web/ee/layouts/project-wrapper.tsx b/apps/web/ee/layouts/project-wrapper.tsx deleted file mode 100644 index 4346d50dd..000000000 --- a/apps/web/ee/layouts/project-wrapper.tsx +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/layouts/project-wrapper"; diff --git a/apps/web/ee/layouts/workspace-wrapper.tsx b/apps/web/ee/layouts/workspace-wrapper.tsx deleted file mode 100644 index 28995114f..000000000 --- a/apps/web/ee/layouts/workspace-wrapper.tsx +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/layouts/workspace-wrapper"; diff --git a/apps/web/ee/services/index.ts b/apps/web/ee/services/index.ts deleted file mode 100644 index 998e3e9a4..000000000 --- a/apps/web/ee/services/index.ts +++ /dev/null @@ -1,8 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "./project"; -export * from "@/services/workspace.service"; diff --git a/apps/web/ee/services/project/estimate.service.ts b/apps/web/ee/services/project/estimate.service.ts deleted file mode 100644 index 6bc359fc7..000000000 --- a/apps/web/ee/services/project/estimate.service.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/services/project/estimate.service"; diff --git a/apps/web/ee/services/project/index.ts b/apps/web/ee/services/project/index.ts deleted file mode 100644 index 99d3ebcb9..000000000 --- a/apps/web/ee/services/project/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "./estimate.service"; diff --git a/apps/web/ee/services/project/project-state.service.ts b/apps/web/ee/services/project/project-state.service.ts deleted file mode 100644 index 74aa51083..000000000 --- a/apps/web/ee/services/project/project-state.service.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "@/services/project/project-state.service"; diff --git a/apps/web/ee/store/analytics.store.ts b/apps/web/ee/store/analytics.store.ts deleted file mode 100644 index 9ae14f9b6..000000000 --- a/apps/web/ee/store/analytics.store.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -import type { IBaseAnalyticsStore } from "@/store/analytics.store"; -import { BaseAnalyticsStore } from "@/store/analytics.store"; - -// eslint-disable-next-line @typescript-eslint/no-empty-object-type -export interface IAnalyticsStore extends IBaseAnalyticsStore { - //observables -} - -export class AnalyticsStore extends BaseAnalyticsStore {} diff --git a/apps/web/ee/store/command-palette.store.ts b/apps/web/ee/store/command-palette.store.ts deleted file mode 100644 index 472663f9b..000000000 --- a/apps/web/ee/store/command-palette.store.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/store/command-palette.store"; diff --git a/apps/web/ee/store/cycle/index.ts b/apps/web/ee/store/cycle/index.ts deleted file mode 100644 index 73f6ed4e8..000000000 --- a/apps/web/ee/store/cycle/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "@/store/cycle.store"; diff --git a/apps/web/ee/store/estimates/estimate.ts b/apps/web/ee/store/estimates/estimate.ts deleted file mode 100644 index 0ca3a5bf9..000000000 --- a/apps/web/ee/store/estimates/estimate.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/store/estimates/estimate"; diff --git a/apps/web/ee/store/issue/helpers/base-issue.store.ts b/apps/web/ee/store/issue/helpers/base-issue.store.ts deleted file mode 100644 index ef05c29f9..000000000 --- a/apps/web/ee/store/issue/helpers/base-issue.store.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/store/issue/helpers/base-issue.store"; diff --git a/apps/web/ee/store/issue/issue-details/activity.store.ts b/apps/web/ee/store/issue/issue-details/activity.store.ts deleted file mode 100644 index 4b2417cd7..000000000 --- a/apps/web/ee/store/issue/issue-details/activity.store.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/store/issue/issue-details/activity.store"; diff --git a/apps/web/ee/store/issue/issue-details/root.store.ts b/apps/web/ee/store/issue/issue-details/root.store.ts deleted file mode 100644 index 9cbc67182..000000000 --- a/apps/web/ee/store/issue/issue-details/root.store.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/store/issue/issue-details/root.store"; diff --git a/apps/web/ee/store/issue/team-views/index.ts b/apps/web/ee/store/issue/team-views/index.ts deleted file mode 100644 index aaf0a1667..000000000 --- a/apps/web/ee/store/issue/team-views/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/store/issue/team-views"; diff --git a/apps/web/ee/store/issue/team/index.ts b/apps/web/ee/store/issue/team/index.ts deleted file mode 100644 index d9c857b5b..000000000 --- a/apps/web/ee/store/issue/team/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/store/issue/team"; diff --git a/apps/web/ee/store/member/project-member.store.ts b/apps/web/ee/store/member/project-member.store.ts deleted file mode 100644 index 5cae0613d..000000000 --- a/apps/web/ee/store/member/project-member.store.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/store/member/project-member.store"; diff --git a/apps/web/ee/store/project-inbox.store.ts b/apps/web/ee/store/project-inbox.store.ts deleted file mode 100644 index abe7af3e9..000000000 --- a/apps/web/ee/store/project-inbox.store.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/store/project-inbox.store"; diff --git a/apps/web/ee/store/root.store.ts b/apps/web/ee/store/root.store.ts deleted file mode 100644 index 0f36aac3d..000000000 --- a/apps/web/ee/store/root.store.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/store/root.store"; diff --git a/apps/web/ee/store/state.store.ts b/apps/web/ee/store/state.store.ts deleted file mode 100644 index b27221268..000000000 --- a/apps/web/ee/store/state.store.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "@/store/state.store"; diff --git a/apps/web/ee/store/timeline/base-timeline.store.ts b/apps/web/ee/store/timeline/base-timeline.store.ts deleted file mode 100644 index 58d323b8d..000000000 --- a/apps/web/ee/store/timeline/base-timeline.store.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/store/timeline/base-timeline.store"; diff --git a/apps/web/ee/store/user/permission.store.ts b/apps/web/ee/store/user/permission.store.ts deleted file mode 100644 index 16e54bd9e..000000000 --- a/apps/web/ee/store/user/permission.store.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/store/user/permission.store"; diff --git a/apps/web/ee/types/index.ts b/apps/web/ee/types/index.ts deleted file mode 100644 index 969da5d1f..000000000 --- a/apps/web/ee/types/index.ts +++ /dev/null @@ -1,8 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "./projects"; -export * from "./issue-types"; diff --git a/apps/web/ee/types/issue-types/index.ts b/apps/web/ee/types/issue-types/index.ts deleted file mode 100644 index 8406674ae..000000000 --- a/apps/web/ee/types/issue-types/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "./issue-property-values.d"; diff --git a/apps/web/ee/types/issue-types/issue-property-values.d.ts b/apps/web/ee/types/issue-types/issue-property-values.d.ts deleted file mode 100644 index 9aac71088..000000000 --- a/apps/web/ee/types/issue-types/issue-property-values.d.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "ce/types/issue-types/issue-property-values.d"; diff --git a/apps/web/ee/types/projects/index.ts b/apps/web/ee/types/projects/index.ts deleted file mode 100644 index 50822d864..000000000 --- a/apps/web/ee/types/projects/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "./projects"; diff --git a/apps/web/ee/types/projects/projects.ts b/apps/web/ee/types/projects/projects.ts deleted file mode 100644 index 59aa09b93..000000000 --- a/apps/web/ee/types/projects/projects.ts +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Copyright (c) 2023-present Plane Software, Inc. and contributors - * SPDX-License-Identifier: AGPL-3.0-only - * See the LICENSE file for details. - */ - -export * from "ce/types/projects/projects"; diff --git a/apps/web/tsconfig.json b/apps/web/tsconfig.json index 3084e156b..2646a6599 100644 --- a/apps/web/tsconfig.json +++ b/apps/web/tsconfig.json @@ -5,11 +5,9 @@ "@/*": ["./core/*"], "@/app/*": ["./app/*"], "@/helpers/*": ["./helpers/*"], - "@/plane-web/*": ["./ce/*"], "@/styles/*": ["./styles/*"], - "app/*": ["./app/*"], - "package.json": ["./package.json"], - "ce/*": ["./ce/*"] + "@/plane-web/*": ["./ce/*"], + "package.json": ["./package.json"] }, "strictNullChecks": true, "exactOptionalPropertyTypes": false,