Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add video and audio support for media-viewer #15

Open
Tracked by #3
Prozilla opened this issue Oct 9, 2024 · 8 comments
Open
Tracked by #3

Add video and audio support for media-viewer #15

Prozilla opened this issue Oct 9, 2024 · 8 comments
Assignees

Comments

@Prozilla
Copy link
Member

Prozilla commented Oct 9, 2024

Maybe even add audio stream support and get the artist and title from the stream.

@Prozilla Prozilla mentioned this issue Oct 9, 2024
9 tasks
@Prozilla Prozilla changed the title Media Viewer being able to handle Videos, audio (maybe even audio stream and get the artist n title from the stream) Add video and audio support for media-viewer Oct 9, 2024
@Lansa-18
Copy link

Lansa-18 commented Oct 11, 2024

@Prozilla Goodday, I would like to get this issue assigned to me, I'm a frontend developer looking to actively learn and contribute to OpenSource Projects.

@Prozilla
Copy link
Member Author

Great timing! I just updated the documentation and added a guide on how to create apps for ProzillaOS: https://os.prozilla.dev/docs/guides/custom-app Hopefully this helps you! Let me know if you have any questions.

@Lansa-18
Copy link

Lansa-18 commented Oct 11, 2024

@Prozilla Quick question, is there a platform i can reach out to you for easy communication like slack or perharps discord.
I tried forking the main repo and ran the codes in the readme but when running pnpm start a whole bunch of errors come up.

I have gone through the custom app guide and successfully set one up.

@Prozilla
Copy link
Member Author

@Lansa-18 We have a Discord server, the link is in the README.md file.

@Prozilla
Copy link
Member Author

By the way, this issue is actually related to an existing app, which you can find under packages/apps/media-viewer, but you may also create your own app for this if you'd like.

@Lansa-18
Copy link

Lansa-18 commented Oct 11, 2024

   10 export type { WindowProps } from "./windows/WindowView";
                                        ~~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.

../core/src/hooks/windows/windowsManagerProvider.tsx:2:39 - error TS6059: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/windows/windowsManagerContext.ts' is not under 'rootDir' '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools'. 'rootDir' is expected to contain all source files.
  The file is in the program because:
    Imported via "./windowsManagerContext" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/windows/windowsManagerProvider.tsx'
    Imported via "../../hooks/windows/windowsManagerContext" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/windows/WindowView.tsx'
    Imported via "./windows/windowsManagerContext" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/index.ts'
    Imported via "../../../hooks/windows/windowsManagerContext" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/taskbar/menus/SearchMenu.tsx'
    Imported via "../../hooks/windows/windowsManagerContext" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/taskbar/Taskbar.tsx'

2 import { WindowsManagerContext } from "./windowsManagerContext";
                                        ~~~~~~~~~~~~~~~~~~~~~~~~~

  ../core/src/components/windows/WindowView.tsx:4:35
    4 import { useWindowsManager } from "../../hooks/windows/windowsManagerContext";
                                        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/index.ts:6:35
    6 export { useWindowsManager } from "./windows/windowsManagerContext";
                                        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/taskbar/menus/SearchMenu.tsx:3:35
    3 import { useWindowsManager } from "../../../hooks/windows/windowsManagerContext";
                                        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/taskbar/Taskbar.tsx:14:35
    14 import { useWindowsManager } from "../../hooks/windows/windowsManagerContext";
                                         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.

../core/src/hooks/windows/windowsManagerProvider.tsx:2:39 - error TS6307: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/windows/windowsManagerContext.ts' is not listed within the file list of project '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/tsconfig.json'. Projects must list all files or use an 'include' pattern.
  The file is in the program because:
    Imported via "./windowsManagerContext" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/windows/windowsManagerProvider.tsx'
    Imported via "../../hooks/windows/windowsManagerContext" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/windows/WindowView.tsx'
    Imported via "./windows/windowsManagerContext" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/index.ts'
    Imported via "../../../hooks/windows/windowsManagerContext" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/taskbar/menus/SearchMenu.tsx'
    Imported via "../../hooks/windows/windowsManagerContext" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/taskbar/Taskbar.tsx'

2 import { WindowsManagerContext } from "./windowsManagerContext";
                                        ~~~~~~~~~~~~~~~~~~~~~~~~~

  ../core/src/components/windows/WindowView.tsx:4:35
    4 import { useWindowsManager } from "../../hooks/windows/windowsManagerContext";
                                        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/index.ts:6:35
    6 export { useWindowsManager } from "./windows/windowsManagerContext";
                                        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/taskbar/menus/SearchMenu.tsx:3:35
    3 import { useWindowsManager } from "../../../hooks/windows/windowsManagerContext";
                                        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/taskbar/Taskbar.tsx:14:35
    14 import { useWindowsManager } from "../../hooks/windows/windowsManagerContext";
                                         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.

../core/src/hooks/windows/windowsManagerProvider.tsx:3:33 - error TS6059: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/windows/windowsProvider.tsx' is not under 'rootDir' '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools'. 'rootDir' is expected to contain all source files.

3 import { WindowsProvider } from "./windowsProvider";
                                  ~~~~~~~~~~~~~~~~~~~

../core/src/hooks/windows/windowsManagerProvider.tsx:3:33 - error TS6307: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/windows/windowsProvider.tsx' is not listed within the file list of project '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/tsconfig.json'. Projects must list all files or use an 'include' pattern.

3 import { WindowsProvider } from "./windowsProvider";
                                  ~~~~~~~~~~~~~~~~~~~

../core/src/hooks/windows/windowsProvider.tsx:2:46 - error TS6059: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/windows/windowsContext.ts' is not under 'rootDir' '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools'. 'rootDir' is expected to contain all source files.
  The file is in the program because:
    Imported via "./windowsContext" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/windows/windowsProvider.tsx'
    Imported via "../../hooks/windows/windowsContext" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/taskbar/Taskbar.tsx'
    Imported via "../../hooks/windows/windowsContext" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/windows/WindowsView.tsx'

2 import { WindowsContext, WindowsState } from "./windowsContext";
                                               ~~~~~~~~~~~~~~~~~~

  ../core/src/components/taskbar/Taskbar.tsx:17:28
    17 import { useWindows } from "../../hooks/windows/windowsContext";
                                  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/windows/WindowsView.tsx:6:28
    6 import { useWindows } from "../../hooks/windows/windowsContext";
                                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.

../core/src/hooks/windows/windowsProvider.tsx:2:46 - error TS6307: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/windows/windowsContext.ts' is not listed within the file list of project '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/tsconfig.json'. Projects must list all files or use an 'include' pattern.
  The file is in the program because:
    Imported via "./windowsContext" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/windows/windowsProvider.tsx'
    Imported via "../../hooks/windows/windowsContext" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/taskbar/Taskbar.tsx'
    Imported via "../../hooks/windows/windowsContext" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/windows/WindowsView.tsx'

2 import { WindowsContext, WindowsState } from "./windowsContext";
                                               ~~~~~~~~~~~~~~~~~~

  ../core/src/components/taskbar/Taskbar.tsx:17:28
    17 import { useWindows } from "../../hooks/windows/windowsContext";
                                  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/windows/WindowsView.tsx:6:28
    6 import { useWindows } from "../../hooks/windows/windowsContext";
                                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.

../core/src/hooks/z-index/zIndexManagerProvider.tsx:2:38 - error TS6059: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/z-index/zIndexManagerContext.ts' is not under 'rootDir' '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools'. 'rootDir' is expected to contain all source files.
  The file is in the program because:
    Imported via "./zIndexManagerContext" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/z-index/zIndexManagerProvider.tsx'
    Imported via "./zIndexManagerContext" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/z-index/zIndex.ts'

2 import { ZIndexManagerContext } from "./zIndexManagerContext";
                                       ~~~~~~~~~~~~~~~~~~~~~~~~

  ../core/src/hooks/z-index/zIndex.ts:2:34
    2 import { useZIndexManager } from "./zIndexManagerContext";
                                       ~~~~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.

../core/src/hooks/z-index/zIndexManagerProvider.tsx:2:38 - error TS6307: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/z-index/zIndexManagerContext.ts' is not listed within the file list of project '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/tsconfig.json'. Projects must list all files or use an 'include' pattern.
  The file is in the program because:
    Imported via "./zIndexManagerContext" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/z-index/zIndexManagerProvider.tsx'
    Imported via "./zIndexManagerContext" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/z-index/zIndex.ts'

2 import { ZIndexManagerContext } from "./zIndexManagerContext";
                                       ~~~~~~~~~~~~~~~~~~~~~~~~

  ../core/src/hooks/z-index/zIndex.ts:2:34
    2 import { useZIndexManager } from "./zIndexManagerContext";
                                       ~~~~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.

../core/src/main.ts:1:15 - error TS6059: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/features/index.ts' is not under 'rootDir' '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools'. 'rootDir' is expected to contain all source files.
  The file is in the program because:
    Imported via "./features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/main.ts'
    Imported via "../../" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/features/system/configs/appsConfig.ts'
    Imported via "../" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/features/windows/windowsManager.ts'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/z-index/zIndexManagerContext.ts'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/z-index/zIndexManagerProvider.tsx'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/windows/windowsManagerContext.ts'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/modals/modalsManagerContext.ts'
    Imported via "../../features/" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/apps/appFolder.ts'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/modals/windowedModal.ts'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/modals/alert.tsx'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/settings/settingsManagerContext.ts'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/z-index/zIndex.ts'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/tracking/trackingManagerContext.ts'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/modals/contextMenu.tsx'
    Imported via "../../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/actions/actions/ClickAction.tsx'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/windows/WindowFallbackView.tsx'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/windows/windowsProvider.tsx'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/windows/windowsManagerProvider.tsx'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/modals/modalsProvider.tsx'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/modals/modalsManagerProvider.tsx'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/settings/settingsManagerProvider.tsx'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/themes/themes.tsx'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/tracking/trackingManagerProvider.tsx'
    Imported via "../../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/taskbar/menus/HomeMenu.tsx'
    Imported via "../../../features/" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/taskbar/menus/SearchMenu.tsx'
    Imported via "../../../features/" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/taskbar/app-icon/AppIcon.tsx'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/taskbar/Taskbar.tsx'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/windows/WindowsView.tsx'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/desktop/Desktop.tsx'
    Imported via "../../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/_utils/directory-list/DirectoryList.tsx'
    Imported via "../" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/features/apps/app.tsx'

1 export * from "./features";
                ~~~~~~~~~~~~

  ../core/src/features/system/configs/appsConfig.ts:1:21
    1 import { App } from "../../";
                          ~~~~~~~~
    File is included via import here.
  ../core/src/features/windows/windowsManager.ts:2:21
    2 import { App } from "../";
                          ~~~~~
    File is included via import here.
  ../core/src/hooks/z-index/zIndexManagerContext.ts:2:31
    2 import { ZIndexManager } from "../../features";
                                    ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/z-index/zIndexManagerProvider.tsx:3:31
    3 import { ZIndexManager } from "../../features";
                                    ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/windows/windowsManagerContext.ts:2:32
    2 import { WindowsManager } from "../../features";
                                     ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/modals/modalsManagerContext.ts:2:31
    2 import { ModalsManager } from "../../features";
                                    ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/apps/appFolder.ts:2:21
    2 import { App } from "../../features/";
                          ~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/modals/windowedModal.ts:5:25
    5 import { Vector2 } from "../../features";
                              ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/modals/alert.tsx:5:39
    5 import { ModalsConfig, Vector2 } from "../../features";
                                            ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/settings/settingsManagerContext.ts:2:33
    2 import { SettingsManager } from "../../features";
                                      ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/z-index/zIndex.ts:3:31
    3 import { ZIndexManager } from "../../features";
                                    ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/tracking/trackingManagerContext.ts:2:33
    2 import { TrackingManager } from "../../features";
                                      ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/modals/contextMenu.tsx:7:25
    7 import { Vector2 } from "../../features";
                              ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/actions/actions/ClickAction.tsx:6:32
    6 import { formatShortcut } from "../../../features";
                                     ~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/windows/WindowFallbackView.tsx:5:21
    5 import { App } from "../../features";
                          ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/windows/windowsProvider.tsx:4:32
    4 import { WindowsManager } from "../../features";
                                     ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/windows/windowsManagerProvider.tsx:4:32
    4 import { WindowsManager } from "../../features";
                                     ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/modals/modalsProvider.tsx:3:31
    3 import { ModalsManager } from "../../features";
                                    ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/modals/modalsManagerProvider.tsx:4:31
    4 import { ModalsManager } from "../../features";
                                    ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/settings/settingsManagerProvider.tsx:4:33
    4 import { SettingsManager } from "../../features";
                                      ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/themes/themes.tsx:4:33
    4 import { SettingsManager } from "../../features";
                                      ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/tracking/trackingManagerProvider.tsx:3:33
    3 import { TrackingManager } from "../../features";
                                      ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/taskbar/menus/HomeMenu.tsx:8:52
    8 import { AppsConfig, closeViewport, Vector2 } from "../../../features";
                                                         ~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/taskbar/menus/SearchMenu.tsx:6:21
    6 import { App } from "../../../features/";
                          ~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/taskbar/app-icon/AppIcon.tsx:2:21
    2 import { App } from "../../../features/";
                          ~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/taskbar/Taskbar.tsx:22:33
    22 import { App, AppsConfig } from "../../features";
                                       ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/windows/WindowsView.tsx:3:87
    3 import { setViewportTitle, setViewportIcon, getViewportParams, SettingsManager } from "../../features";
                                                                                            ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/desktop/Desktop.tsx:13:85
    13 import { SettingsManager, reloadViewport, ModalsManager, Vector2, AppsConfig } from "../../features";
                                                                                           ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/_utils/directory-list/DirectoryList.tsx:6:25
    6 import { Vector2 } from "../../../features";
                              ~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/features/apps/app.tsx:2:25
    2 import { Vector2 } from "../";
                              ~~~~~
    File is included via import here.

../core/src/main.ts:1:15 - error TS6307: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/features/index.ts' is not listed within the file list of project '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/tsconfig.json'. Projects must list all files or use an 'include' pattern.
  The file is in the program because:
    Imported via "./features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/main.ts'
    Imported via "../../" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/features/system/configs/appsConfig.ts'
    Imported via "../" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/features/windows/windowsManager.ts'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/z-index/zIndexManagerContext.ts'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/z-index/zIndexManagerProvider.tsx'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/windows/windowsManagerContext.ts'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/modals/modalsManagerContext.ts'
    Imported via "../../features/" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/apps/appFolder.ts'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/modals/windowedModal.ts'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/modals/alert.tsx'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/settings/settingsManagerContext.ts'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/z-index/zIndex.ts'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/tracking/trackingManagerContext.ts'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/modals/contextMenu.tsx'
    Imported via "../../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/actions/actions/ClickAction.tsx'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/windows/WindowFallbackView.tsx'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/windows/windowsProvider.tsx'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/windows/windowsManagerProvider.tsx'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/modals/modalsProvider.tsx'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/modals/modalsManagerProvider.tsx'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/settings/settingsManagerProvider.tsx'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/themes/themes.tsx'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/tracking/trackingManagerProvider.tsx'
    Imported via "../../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/taskbar/menus/HomeMenu.tsx'
    Imported via "../../../features/" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/taskbar/menus/SearchMenu.tsx'
    Imported via "../../../features/" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/taskbar/app-icon/AppIcon.tsx'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/taskbar/Taskbar.tsx'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/windows/WindowsView.tsx'
    Imported via "../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/desktop/Desktop.tsx'
    Imported via "../../../features" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/_utils/directory-list/DirectoryList.tsx'
    Imported via "../" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/features/apps/app.tsx'

1 export * from "./features";
                ~~~~~~~~~~~~

  ../core/src/features/system/configs/appsConfig.ts:1:21
    1 import { App } from "../../";
                          ~~~~~~~~
    File is included via import here.
  ../core/src/features/windows/windowsManager.ts:2:21
    2 import { App } from "../";
                          ~~~~~
    File is included via import here.
  ../core/src/hooks/z-index/zIndexManagerContext.ts:2:31
    2 import { ZIndexManager } from "../../features";
                                    ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/z-index/zIndexManagerProvider.tsx:3:31
    3 import { ZIndexManager } from "../../features";
                                    ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/windows/windowsManagerContext.ts:2:32
    2 import { WindowsManager } from "../../features";
                                     ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/modals/modalsManagerContext.ts:2:31
    2 import { ModalsManager } from "../../features";
                                    ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/apps/appFolder.ts:2:21
    2 import { App } from "../../features/";
                          ~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/modals/windowedModal.ts:5:25
    5 import { Vector2 } from "../../features";
                              ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/modals/alert.tsx:5:39
    5 import { ModalsConfig, Vector2 } from "../../features";
                                            ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/settings/settingsManagerContext.ts:2:33
    2 import { SettingsManager } from "../../features";
                                      ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/z-index/zIndex.ts:3:31
    3 import { ZIndexManager } from "../../features";
                                    ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/tracking/trackingManagerContext.ts:2:33
    2 import { TrackingManager } from "../../features";
                                      ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/modals/contextMenu.tsx:7:25
    7 import { Vector2 } from "../../features";
                              ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/actions/actions/ClickAction.tsx:6:32
    6 import { formatShortcut } from "../../../features";
                                     ~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/windows/WindowFallbackView.tsx:5:21
    5 import { App } from "../../features";
                          ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/windows/windowsProvider.tsx:4:32
    4 import { WindowsManager } from "../../features";
                                     ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/windows/windowsManagerProvider.tsx:4:32
    4 import { WindowsManager } from "../../features";
                                     ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/modals/modalsProvider.tsx:3:31
    3 import { ModalsManager } from "../../features";
                                    ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/modals/modalsManagerProvider.tsx:4:31
    4 import { ModalsManager } from "../../features";
                                    ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/settings/settingsManagerProvider.tsx:4:33
    4 import { SettingsManager } from "../../features";
                                      ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/themes/themes.tsx:4:33
    4 import { SettingsManager } from "../../features";
                                      ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/tracking/trackingManagerProvider.tsx:3:33
    3 import { TrackingManager } from "../../features";
                                      ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/taskbar/menus/HomeMenu.tsx:8:52
    8 import { AppsConfig, closeViewport, Vector2 } from "../../../features";
                                                         ~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/taskbar/menus/SearchMenu.tsx:6:21
    6 import { App } from "../../../features/";
                          ~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/taskbar/app-icon/AppIcon.tsx:2:21
    2 import { App } from "../../../features/";
                          ~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/taskbar/Taskbar.tsx:22:33
    22 import { App, AppsConfig } from "../../features";
                                       ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/windows/WindowsView.tsx:3:87
    3 import { setViewportTitle, setViewportIcon, getViewportParams, SettingsManager } from "../../features";
                                                                                            ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/desktop/Desktop.tsx:13:85
    13 import { SettingsManager, reloadViewport, ModalsManager, Vector2, AppsConfig } from "../../features";
                                                                                           ~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/_utils/directory-list/DirectoryList.tsx:6:25
    6 import { Vector2 } from "../../../features";
                              ~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/features/apps/app.tsx:2:25
    2 import { Vector2 } from "../";
                              ~~~~~
    File is included via import here.

../core/src/main.ts:4:15 - error TS6059: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/constants/index.ts' is not under 'rootDir' '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools'. 'rootDir' is expected to contain all source files.

4 export * from "./constants";
                ~~~~~~~~~~~~~

../core/src/main.ts:4:15 - error TS6307: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/constants/index.ts' is not listed within the file list of project '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/tsconfig.json'. Projects must list all files or use an 'include' pattern.

4 export * from "./constants";
                ~~~~~~~~~~~~~

../core/src/main.ts:6:15 - error TS6059: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/router/index.ts' is not under 'rootDir' '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools'. 'rootDir' is expected to contain all source files.

6 export * from "./router";
                ~~~~~~~~~~

../core/src/main.ts:6:15 - error TS6307: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/router/index.ts' is not listed within the file list of project '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/tsconfig.json'. Projects must list all files or use an 'include' pattern.

6 export * from "./router";
                ~~~~~~~~~~

../core/src/router/Router.tsx:2:30 - error TS6059: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/router/routes/DefaultRoute.tsx' is not under 'rootDir' '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools'. 'rootDir' is expected to contain all source files.
  The file is in the program because:
    Imported via "./routes/DefaultRoute" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/router/Router.tsx'
    Imported via "./routes/DefaultRoute" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/router/index.ts'

2 import { DefaultRoute } from "./routes/DefaultRoute";
                               ~~~~~~~~~~~~~~~~~~~~~~~

  ../core/src/router/index.ts:2:30
    2 export { DefaultRoute } from "./routes/DefaultRoute";
                                   ~~~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.

../core/src/router/Router.tsx:2:30 - error TS6307: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/router/routes/DefaultRoute.tsx' is not listed within the file list of project '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/tsconfig.json'. Projects must list all files or use an 'include' pattern.
  The file is in the program because:
    Imported via "./routes/DefaultRoute" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/router/Router.tsx'
    Imported via "./routes/DefaultRoute" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/router/index.ts'

2 import { DefaultRoute } from "./routes/DefaultRoute";
                               ~~~~~~~~~~~~~~~~~~~~~~~

  ../core/src/router/index.ts:2:30
    2 export { DefaultRoute } from "./routes/DefaultRoute";
                                   ~~~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.

../core/src/router/Router.tsx:3:33 - error TS6059: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/router/routes/StandaloneRoute.tsx' is not under 'rootDir' '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools'. 'rootDir' is expected to contain all source files.
  The file is in the program because:
    Imported via "./routes/StandaloneRoute" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/router/Router.tsx'
    Imported via "./routes/StandaloneRoute" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/router/index.ts'

3 import { StandaloneRoute } from "./routes/StandaloneRoute";
                                  ~~~~~~~~~~~~~~~~~~~~~~~~~~

  ../core/src/router/index.ts:4:33
    4 export { StandaloneRoute } from "./routes/StandaloneRoute";
                                      ~~~~~~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.

../core/src/router/Router.tsx:3:33 - error TS6307: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/router/routes/StandaloneRoute.tsx' is not listed within the file list of project '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/tsconfig.json'. Projects must list all files or use an 'include' pattern.
  The file is in the program because:
    Imported via "./routes/StandaloneRoute" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/router/Router.tsx'
    Imported via "./routes/StandaloneRoute" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/router/index.ts'

3 import { StandaloneRoute } from "./routes/StandaloneRoute";
                                  ~~~~~~~~~~~~~~~~~~~~~~~~~~

  ../core/src/router/index.ts:4:33
    4 export { StandaloneRoute } from "./routes/StandaloneRoute";
                                      ~~~~~~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.

../core/src/router/Router.tsx:4:25 - error TS6059: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/router/routes/NoRoute.tsx' is not under 'rootDir' '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools'. 'rootDir' is expected to contain all source files.
  The file is in the program because:
    Imported via "./routes/NoRoute" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/router/Router.tsx'
    Imported via "./routes/NoRoute" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/router/index.ts'

4 import { NoRoute } from "./routes/NoRoute";
                          ~~~~~~~~~~~~~~~~~~

  ../core/src/router/index.ts:3:25
    3 export { NoRoute } from "./routes/NoRoute";
                              ~~~~~~~~~~~~~~~~~~
    File is included via import here.

../core/src/router/Router.tsx:4:25 - error TS6307: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/router/routes/NoRoute.tsx' is not listed within the file list of project '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/tsconfig.json'. Projects must list all files or use an 'include' pattern.
  The file is in the program because:
    Imported via "./routes/NoRoute" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/router/Router.tsx'
    Imported via "./routes/NoRoute" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/router/index.ts'

4 import { NoRoute } from "./routes/NoRoute";
                          ~~~~~~~~~~~~~~~~~~

  ../core/src/router/index.ts:3:25
    3 export { NoRoute } from "./routes/NoRoute";
                              ~~~~~~~~~~~~~~~~~~
    File is included via import here.

../core/src/router/index.ts:1:24 - error TS6059: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/router/Router.tsx' is not under 'rootDir' '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools'. 'rootDir' is expected to contain all source files.

1 export { Router } from "./Router";
                         ~~~~~~~~~~

../core/src/router/index.ts:1:24 - error TS6307: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/router/Router.tsx' is not listed within the file list of project '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/tsconfig.json'. Projects must list all files or use an 'include' pattern.

1 export { Router } from "./Router";
                         ~~~~~~~~~~

../core/src/router/routes/StandaloneRoute.tsx:3:34 - error TS6059: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/standalone/StandaloneHeader.tsx' is not under 'rootDir' '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools'. 'rootDir' is expected to contain all source files.

3 import { StandaloneHeader } from "../../components/standalone/StandaloneHeader";
                                   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

../core/src/router/routes/StandaloneRoute.tsx:3:34 - error TS6307: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/standalone/StandaloneHeader.tsx' is not listed within the file list of project '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/tsconfig.json'. Projects must list all files or use an 'include' pattern.

3 import { StandaloneHeader } from "../../components/standalone/StandaloneHeader";
                                   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

src/features/console.ts:1:22 - error TS6059: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/shared/src/main.ts' is not under 'rootDir' '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools'. 'rootDir' is expected to contain all source files.
  The file is in the program because:
    Imported via "@prozilla-os/shared" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/src/features/console.ts'
    Imported via "@prozilla-os/shared" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/features/windows/windowsManager.ts'
    Imported via "@prozilla-os/shared" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/features/system/systemManager.ts'
    Imported via "@prozilla-os/shared" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/features/virtual-drive/folder/virtualFolder.ts'
    Imported via "@prozilla-os/shared" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/features/virtual-drive/virtualBase.ts'
    Imported via "@prozilla-os/shared" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/features/_utils/time.utils.ts'
    Imported via "@prozilla-os/shared" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/_utils/keyboard.ts'
    Imported via "@prozilla-os/shared" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/_utils/history.ts'
    Imported via "@prozilla-os/shared" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/features/z-index/zIndexManager.ts'
    Imported via "@prozilla-os/shared" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/windows/WindowsView.tsx'
    Imported via "@prozilla-os/shared" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/_utils/progress-bar/ProgressBar.tsx'
    Imported via "@prozilla-os/shared" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/desktop/Desktop.tsx'

1 import { ANSI } from "@prozilla-os/shared";
                       ~~~~~~~~~~~~~~~~~~~~~

  ../core/src/features/windows/windowsManager.ts:1:29
    1 import { randomRange } from "@prozilla-os/shared";
                                  ~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/features/system/systemManager.ts:10:36
    10 import { formatRelativeTime } from "@prozilla-os/shared";
                                          ~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/features/virtual-drive/folder/virtualFolder.ts:7:33
    7 import { removeFromArray } from "@prozilla-os/shared";
                                      ~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/features/virtual-drive/virtualBase.ts:4:45
    4 import { EventEmitter, EventNamesMap } from "@prozilla-os/shared";
                                                  ~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/features/_utils/time.utils.ts:1:36
    1 import { formatRelativeTime } from "@prozilla-os/shared";
                                         ~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/_utils/keyboard.ts:2:33
    2 import { removeFromArray } from "@prozilla-os/shared";
                                      ~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/_utils/history.ts:1:23
    1 import { clamp } from "@prozilla-os/shared";
                            ~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/features/z-index/zIndexManager.ts:1:30
    1 import { EventEmitter } from "@prozilla-os/shared";
                                   ~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/windows/WindowsView.tsx:7:43
    7 import { removeDuplicatesFromArray } from "@prozilla-os/shared";
                                                ~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/_utils/progress-bar/ProgressBar.tsx:4:23
    4 import { clamp } from "@prozilla-os/shared";
                            ~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/desktop/Desktop.tsx:20:32
    20 import { isValidInteger } from "@prozilla-os/shared";
                                      ~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.

src/features/console.ts:1:22 - error TS6307: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/shared/src/main.ts' is not listed within the file list of project '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/tsconfig.json'. Projects must list all files or use an 'include' pattern.
  The file is in the program because:
    Imported via "@prozilla-os/shared" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/src/features/console.ts'
    Imported via "@prozilla-os/shared" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/features/windows/windowsManager.ts'
    Imported via "@prozilla-os/shared" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/features/system/systemManager.ts'
    Imported via "@prozilla-os/shared" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/features/virtual-drive/folder/virtualFolder.ts'
    Imported via "@prozilla-os/shared" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/features/virtual-drive/virtualBase.ts'
    Imported via "@prozilla-os/shared" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/features/_utils/time.utils.ts'
    Imported via "@prozilla-os/shared" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/_utils/keyboard.ts'
    Imported via "@prozilla-os/shared" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/hooks/_utils/history.ts'
    Imported via "@prozilla-os/shared" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/features/z-index/zIndexManager.ts'
    Imported via "@prozilla-os/shared" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/windows/WindowsView.tsx'
    Imported via "@prozilla-os/shared" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/_utils/progress-bar/ProgressBar.tsx'
    Imported via "@prozilla-os/shared" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/components/desktop/Desktop.tsx'

1 import { ANSI } from "@prozilla-os/shared";
                       ~~~~~~~~~~~~~~~~~~~~~

  ../core/src/features/windows/windowsManager.ts:1:29
    1 import { randomRange } from "@prozilla-os/shared";
                                  ~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/features/system/systemManager.ts:10:36
    10 import { formatRelativeTime } from "@prozilla-os/shared";
                                          ~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/features/virtual-drive/folder/virtualFolder.ts:7:33
    7 import { removeFromArray } from "@prozilla-os/shared";
                                      ~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/features/virtual-drive/virtualBase.ts:4:45
    4 import { EventEmitter, EventNamesMap } from "@prozilla-os/shared";
                                                  ~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/features/_utils/time.utils.ts:1:36
    1 import { formatRelativeTime } from "@prozilla-os/shared";
                                         ~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/_utils/keyboard.ts:2:33
    2 import { removeFromArray } from "@prozilla-os/shared";
                                      ~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/hooks/_utils/history.ts:1:23
    1 import { clamp } from "@prozilla-os/shared";
                            ~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/features/z-index/zIndexManager.ts:1:30
    1 import { EventEmitter } from "@prozilla-os/shared";
                                   ~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/windows/WindowsView.tsx:7:43
    7 import { removeDuplicatesFromArray } from "@prozilla-os/shared";
                                                ~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/_utils/progress-bar/ProgressBar.tsx:4:23
    4 import { clamp } from "@prozilla-os/shared";
                            ~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.
  ../core/src/components/desktop/Desktop.tsx:20:32
    20 import { isValidInteger } from "@prozilla-os/shared";
                                      ~~~~~~~~~~~~~~~~~~~~~
    File is included via import here.

src/plugins/stageSite.ts:1:33 - error TS6059: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/main.ts' is not under 'rootDir' '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools'. 'rootDir' is expected to contain all source files.

1 import type { AppsConfig } from "@prozilla-os/core";
                                  ~~~~~~~~~~~~~~~~~~~

src/plugins/stageSite.ts:1:33 - error TS6307: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/core/src/main.ts' is not listed within the file list of project '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/tsconfig.json'. Projects must list all files or use an 'include' pattern.

1 import type { AppsConfig } from "@prozilla-os/core";
                                  ~~~~~~~~~~~~~~~~~~~

../shared/src/constants/index.ts:1:22 - error TS6059: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/shared/src/constants/ansi.const.ts' is not under 'rootDir' '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools'. 'rootDir' is expected to contain all source files.

1 export { ANSI } from "./ansi.const";
                       ~~~~~~~~~~~~~~

../shared/src/constants/index.ts:1:22 - error TS6307: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/shared/src/constants/ansi.const.ts' is not listed within the file list of project '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/tsconfig.json'. Projects must list all files or use an 'include' pattern.

1 export { ANSI } from "./ansi.const";
                       ~~~~~~~~~~~~~~

../shared/src/features/_utils/index.ts:1:15 - error TS6059: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/shared/src/features/_utils/array.utils.ts' is not under 'rootDir' '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools'. 'rootDir' is expected to contain all source files.

1 export * from "./array.utils";
                ~~~~~~~~~~~~~~~

../shared/src/features/_utils/index.ts:1:15 - error TS6307: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/shared/src/features/_utils/array.utils.ts' is not listed within the file list of project '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/tsconfig.json'. Projects must list all files or use an 'include' pattern.

1 export * from "./array.utils";
                ~~~~~~~~~~~~~~~

../shared/src/features/_utils/index.ts:2:15 - error TS6059: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/shared/src/features/_utils/date.utils.ts' is not under 'rootDir' '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools'. 'rootDir' is expected to contain all source files.

2 export * from "./date.utils";
                ~~~~~~~~~~~~~~

../shared/src/features/_utils/index.ts:2:15 - error TS6307: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/shared/src/features/_utils/date.utils.ts' is not listed within the file list of project '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/tsconfig.json'. Projects must list all files or use an 'include' pattern.

2 export * from "./date.utils";
                ~~~~~~~~~~~~~~

../shared/src/features/_utils/index.ts:3:15 - error TS6059: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/shared/src/features/_utils/event.utils.ts' is not under 'rootDir' '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools'. 'rootDir' is expected to contain all source files.

3 export * from "./event.utils";
                ~~~~~~~~~~~~~~~

../shared/src/features/_utils/index.ts:3:15 - error TS6307: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/shared/src/features/_utils/event.utils.ts' is not listed within the file list of project '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/tsconfig.json'. Projects must list all files or use an 'include' pattern.

3 export * from "./event.utils";
                ~~~~~~~~~~~~~~~

../shared/src/features/_utils/index.ts:4:15 - error TS6059: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/shared/src/features/_utils/math.utils.ts' is not under 'rootDir' '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools'. 'rootDir' is expected to contain all source files.

4 export * from "./math.utils";
                ~~~~~~~~~~~~~~

../shared/src/features/_utils/index.ts:4:15 - error TS6307: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/shared/src/features/_utils/math.utils.ts' is not listed within the file list of project '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/tsconfig.json'. Projects must list all files or use an 'include' pattern.

4 export * from "./math.utils";
                ~~~~~~~~~~~~~~

../shared/src/features/_utils/index.ts:5:15 - error TS6059: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/shared/src/features/_utils/number.utils.ts' is not under 'rootDir' '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools'. 'rootDir' is expected to contain all source files.

5 export * from "./number.utils";
                ~~~~~~~~~~~~~~~~

../shared/src/features/_utils/index.ts:5:15 - error TS6307: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/shared/src/features/_utils/number.utils.ts' is not listed within the file list of project '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/tsconfig.json'. Projects must list all files or use an 'include' pattern.

5 export * from "./number.utils";
                ~~~~~~~~~~~~~~~~

../shared/src/features/index.ts:1:15 - error TS6059: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/shared/src/features/_utils/index.ts' is not under 'rootDir' '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools'. 'rootDir' is expected to contain all source files.

1 export * from "./_utils";
                ~~~~~~~~~~

../shared/src/features/index.ts:1:15 - error TS6307: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/shared/src/features/_utils/index.ts' is not listed within the file list of project '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/tsconfig.json'. Projects must list all files or use an 'include' pattern.

1 export * from "./_utils";
                ~~~~~~~~~~

../shared/src/main.ts:1:15 - error TS6059: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/shared/src/constants/index.ts' is not under 'rootDir' '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools'. 'rootDir' is expected to contain all source files.

1 export * from "./constants";
                ~~~~~~~~~~~~~

../shared/src/main.ts:1:15 - error TS6307: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/shared/src/constants/index.ts' is not listed within the file list of project '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/tsconfig.json'. Projects must list all files or use an 'include' pattern.

1 export * from "./constants";
                ~~~~~~~~~~~~~

../shared/src/main.ts:2:15 - error TS6059: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/shared/src/features/index.ts' is not under 'rootDir' '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools'. 'rootDir' is expected to contain all source files.

2 export * from "./features";
                ~~~~~~~~~~~~

../shared/src/main.ts:2:15 - error TS6307: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/shared/src/features/index.ts' is not listed within the file list of project '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/tsconfig.json'. Projects must list all files or use an 'include' pattern.

2 export * from "./features";
                ~~~~~~~~~~~~

../skins/src/core/index.ts:1:22 - error TS6059: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/skins/src/core/skin.ts' is not under 'rootDir' '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools'. 'rootDir' is expected to contain all source files.
  The file is in the program because:
    Imported via "./skin" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/skins/src/core/index.ts'
    Imported via "../skin" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/skins/src/core/skins/macOs.ts'
    Imported via "../skin" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/skins/src/core/skins/minimal.ts'
    Imported via "../skin" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/skins/src/core/skins/pixel.ts'

1 export { Skin } from "./skin";
                       ~~~~~~~~

  ../skins/src/core/skins/macOs.ts:1:22
    1 import { Skin } from "../skin";
                           ~~~~~~~~~
    File is included via import here.
  ../skins/src/core/skins/minimal.ts:1:22
    1 import { Skin } from "../skin";
                           ~~~~~~~~~
    File is included via import here.
  ../skins/src/core/skins/pixel.ts:1:22
    1 import { Skin } from "../skin";
                           ~~~~~~~~~
    File is included via import here.

../skins/src/core/index.ts:1:22 - error TS6307: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/skins/src/core/skin.ts' is not listed within the file list of project '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/tsconfig.json'. Projects must list all files or use an 'include' pattern.
  The file is in the program because:
    Imported via "./skin" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/skins/src/core/index.ts'
    Imported via "../skin" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/skins/src/core/skins/macOs.ts'
    Imported via "../skin" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/skins/src/core/skins/minimal.ts'
    Imported via "../skin" from file '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/skins/src/core/skins/pixel.ts'

1 export { Skin } from "./skin";
                       ~~~~~~~~

  ../skins/src/core/skins/macOs.ts:1:22
    1 import { Skin } from "../skin";
                           ~~~~~~~~~
    File is included via import here.
  ../skins/src/core/skins/minimal.ts:1:22
    1 import { Skin } from "../skin";
                           ~~~~~~~~~
    File is included via import here.
  ../skins/src/core/skins/pixel.ts:1:22
    1 import { Skin } from "../skin";
                           ~~~~~~~~~
    File is included via import here.

../skins/src/core/index.ts:2:27 - error TS6059: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/skins/src/core/skins/macOs.ts' is not under 'rootDir' '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools'. 'rootDir' is expected to contain all source files.

2 export { macOsSkin } from "./skins/macOs";
                            ~~~~~~~~~~~~~~~

../skins/src/core/index.ts:2:27 - error TS6307: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/skins/src/core/skins/macOs.ts' is not listed within the file list of project '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/tsconfig.json'. Projects must list all files or use an 'include' pattern.

2 export { macOsSkin } from "./skins/macOs";
                            ~~~~~~~~~~~~~~~

../skins/src/core/index.ts:3:29 - error TS6059: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/skins/src/core/skins/minimal.ts' is not under 'rootDir' '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools'. 'rootDir' is expected to contain all source files.

3 export { minimalSkin } from "./skins/minimal";
                              ~~~~~~~~~~~~~~~~~

../skins/src/core/index.ts:3:29 - error TS6307: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/skins/src/core/skins/minimal.ts' is not listed within the file list of project '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/tsconfig.json'. Projects must list all files or use an 'include' pattern.

3 export { minimalSkin } from "./skins/minimal";
                              ~~~~~~~~~~~~~~~~~

../skins/src/core/index.ts:4:27 - error TS6059: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/skins/src/core/skins/pixel.ts' is not under 'rootDir' '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools'. 'rootDir' is expected to contain all source files.

4 export { pixelSkin } from "./skins/pixel";
                            ~~~~~~~~~~~~~~~

../skins/src/core/index.ts:4:27 - error TS6307: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/skins/src/core/skins/pixel.ts' is not listed within the file list of project '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/tsconfig.json'. Projects must list all files or use an 'include' pattern.

4 export { pixelSkin } from "./skins/pixel";
                            ~~~~~~~~~~~~~~~

../skins/src/core/skin.ts:1:35 - error TS6059: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/skins/src/types/utils.ts' is not under 'rootDir' '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools'. 'rootDir' is expected to contain all source files.

1 import { OptionalInterface } from "../types/utils";
                                    ~~~~~~~~~~~~~~~~

../skins/src/core/skin.ts:1:35 - error TS6307: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/skins/src/types/utils.ts' is not listed within the file list of project '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/tsconfig.json'. Projects must list all files or use an 'include' pattern.

1 import { OptionalInterface } from "../types/utils";
                                    ~~~~~~~~~~~~~~~~

../skins/src/main.ts:1:15 - error TS6059: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/skins/src/core/index.ts' is not under 'rootDir' '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools'. 'rootDir' is expected to contain all source files.

1 export * from "./core";
                ~~~~~~~~

../skins/src/main.ts:1:15 - error TS6307: File '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/skins/src/core/index.ts' is not listed within the file list of project '/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools/tsconfig.json'. Projects must list all files or use an 'include' pattern.

1 export * from "./core";
                ~~~~~~~~


Found 286 errors in 63 files.

Errors  Files
     2  ../core/src/components/_utils/directory-list/DirectoryList.tsx:7
    10  ../core/src/components/_utils/index.ts:2
     6  ../core/src/components/actions/Actions.tsx:2
     2  ../core/src/components/actions/actions/ClickAction.tsx:7
     2  ../core/src/components/actions/index.ts:6
     8  ../core/src/components/desktop/Desktop.tsx:7
    12  ../core/src/components/index.ts:1
     6  ../core/src/components/modals/ModalView.tsx:2
     2  ../core/src/components/modals/_utils/WindowedModal.tsx:11
     2  ../core/src/components/modals/dialog-box/DialogBox.tsx:2
     2  ../core/src/components/modals/index.ts:5
     4  ../core/src/components/modals/share/Share.tsx:7
    18  ../core/src/components/prozilla-os/ProzillaOS.tsx:2
    10  ../core/src/components/taskbar/Taskbar.tsx:6
     2  ../core/src/components/taskbar/indicators/Battery.tsx:5
     8  ../core/src/components/taskbar/indicators/index.ts:1
     2  ../core/src/components/taskbar/menus/HomeMenu.tsx:10
    12  ../core/src/components/windows/WindowView.tsx:10
     6  ../core/src/features/_utils/index.ts:1
     2  ../core/src/features/apps/app.tsx:1
     8  ../core/src/features/index.ts:1
     2  ../core/src/features/modals/modal.ts:3
     2  ../core/src/features/settings/settingsManager.ts:2
     2  ../core/src/features/system/configs/appsConfig.ts:2
    16  ../core/src/features/system/configs/index.ts:1
     2  ../core/src/features/system/configs/modalsConfig.ts:2
     2  ../core/src/features/system/systemManager.ts:1
     2  ../core/src/features/virtual-drive/file/index.ts:1
     6  ../core/src/features/virtual-drive/file/virtualFile.ts:1
     2  ../core/src/features/virtual-drive/folder/index.ts:1
     2  ../core/src/features/virtual-drive/folder/virtualFolderLink.ts:1
     2  ../core/src/features/virtual-drive/index.ts:1
     8  ../core/src/features/virtual-drive/root/virtualRoot.ts:1
     2  ../core/src/features/virtual-drive/virtualBase.ts:1
     4  ../core/src/features/windows/windowsManager.ts:4
     2  ../core/src/features/z-index/zIndexManager.ts:2
     2  ../core/src/hooks/_utils/classNames.ts:2
     8  ../core/src/hooks/_utils/index.ts:1
    12  ../core/src/hooks/index.ts:1
     4  ../core/src/hooks/modals/alert.tsx:2
     6  ../core/src/hooks/modals/contextMenu.tsx:2
     2  ../core/src/hooks/modals/index.ts:1
     2  ../core/src/hooks/modals/modalsManagerProvider.tsx:2
     2  ../core/src/hooks/modals/modalsProvider.tsx:2
     2  ../core/src/hooks/themes/themes.tsx:3
     4  ../core/src/hooks/virtual-drive/virtualRootProvider.tsx:2
     2  ../core/src/hooks/windows/windowsContext.ts:2
     4  ../core/src/hooks/windows/windowsManagerProvider.tsx:2
     2  ../core/src/hooks/windows/windowsProvider.tsx:2
     2  ../core/src/hooks/z-index/zIndexManagerProvider.tsx:2
     6  ../core/src/main.ts:1
     6  ../core/src/router/Router.tsx:2
     2  ../core/src/router/index.ts:1
     2  ../core/src/router/routes/StandaloneRoute.tsx:3
     2  src/features/console.ts:1
     2  src/plugins/stageSite.ts:1
     2  ../shared/src/constants/index.ts:1
    10  ../shared/src/features/_utils/index.ts:1
     2  ../shared/src/features/index.ts:1
     4  ../shared/src/main.ts:1
     8  ../skins/src/core/index.ts:1
     2  ../skins/src/core/skin.ts:1
     2  ../skins/src/main.ts:1
/home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/dev-tools:
 ERR_PNPM_RECURSIVE_RUN_FIRST_FAIL  @prozilla-os/dev-tools@1.0.6 build: `tsc && vite build`
Exit status 1

> @prozilla-os/shared@1.2.0 build /home/lansa18/Desktop/Hacktoberfest/ProzillaOS/packages/shared
> tsc && vite build

 ELIFECYCLE  Command failed with exit code 1.
 

 I get these error when i run pnpm build

@Prozilla
Copy link
Member Author

Try checking out on this branch and running the build command again: https://github.com/prozilla-os/ProzillaOS/tree/fix/ts6059-build-error

@Prozilla
Copy link
Member Author

Prozilla commented Oct 11, 2024

Confirmed to have been fixed in 771419b or earlier. (probably in 02691b3)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants