├── .eslintrc.cjs ├── .gitignore ├── LICENSE ├── README.md ├── dist ├── @litecode-ide │ ├── index.d.ts │ ├── virtual-file-system.es.js │ └── virtual-file-system.umd.js ├── style.css └── vite.svg ├── index.html ├── package.json ├── postcss.config.js ├── public └── vite.svg ├── sample ├── breadcrumbs.gif ├── search.gif ├── structure.gif └── tabs.gif ├── src ├── App.tsx ├── assets │ ├── cross.svg │ ├── css.svg │ ├── delete.svg │ ├── down-arrow.svg │ ├── download.svg │ ├── error.png │ ├── folder.svg │ ├── js.svg │ ├── jsx.svg │ ├── left-arrow.svg │ ├── manifest.json │ ├── new-file-colored.svg │ ├── new-file.svg │ ├── new-folder.svg │ ├── new-project.svg │ ├── open-project.svg │ ├── opened-folder.svg │ ├── react.svg │ ├── readme.svg │ ├── rename.svg │ ├── three-dots.svg │ └── typescript.svg ├── components │ ├── file-structure │ │ ├── Folder.tsx │ │ ├── MiniFolder.tsx │ │ ├── Structure.tsx │ │ ├── search │ │ │ ├── HighlightedText.tsx │ │ │ ├── SearchContainer.tsx │ │ │ ├── SearchInput.tsx │ │ │ └── SearchResults.tsx │ │ ├── utils │ │ │ └── index.ts │ │ └── widgets │ │ │ ├── CollapseBtn.tsx │ │ │ ├── CustomInput.tsx │ │ │ ├── FileActions.tsx │ │ │ ├── ItemTitle.tsx │ │ │ └── ThreeDots.tsx │ └── menus │ │ ├── Breadcrumbs.tsx │ │ ├── Dialog.tsx │ │ ├── MenuContext.tsx │ │ ├── Tab.tsx │ │ └── Tabs.tsx ├── hooks │ ├── useOutsideAlerter.ts │ └── usePrependPortal.ts ├── index.css ├── index.d.ts ├── lib │ ├── index.d.ts │ └── index.tsx ├── main.tsx ├── state │ ├── context.ts │ ├── features │ │ ├── structure │ │ │ ├── miniStructureSlice.ts │ │ │ ├── structureSlice.ts │ │ │ └── utils │ │ │ │ ├── downloadZip.ts │ │ │ │ ├── getFileTree.ts │ │ │ │ ├── pathUtil.ts │ │ │ │ ├── sorting.ts │ │ │ │ └── traversal.ts │ │ └── tabs │ │ │ └── tabsSlice.ts │ ├── hooks.ts │ ├── provider.tsx │ └── store.ts ├── types │ ├── Breadcrumbs.d.ts │ ├── CollapseBtn.d.ts │ ├── CustomInput.d.ts │ ├── Dialog.d.ts │ ├── FileActions.d.ts │ ├── Folder.d.ts │ ├── HighlightedText.d.ts │ ├── ItemTitle.d.ts │ ├── MenuContext.d.ts │ ├── MiniFolder.d.ts │ ├── SearchContainer.d.ts │ ├── SearchInput.d.ts │ ├── SearchResults.d.ts │ ├── Structure.d.ts │ ├── Tab.d.ts │ ├── Tabs.d.ts │ ├── ThreeDots.d.ts │ └── index.d.ts └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/README.md -------------------------------------------------------------------------------- /dist/@litecode-ide/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/dist/@litecode-ide/index.d.ts -------------------------------------------------------------------------------- /dist/@litecode-ide/virtual-file-system.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/dist/@litecode-ide/virtual-file-system.es.js -------------------------------------------------------------------------------- /dist/@litecode-ide/virtual-file-system.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/dist/@litecode-ide/virtual-file-system.umd.js -------------------------------------------------------------------------------- /dist/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/dist/style.css -------------------------------------------------------------------------------- /dist/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/dist/vite.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/public/vite.svg -------------------------------------------------------------------------------- /sample/breadcrumbs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/sample/breadcrumbs.gif -------------------------------------------------------------------------------- /sample/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/sample/search.gif -------------------------------------------------------------------------------- /sample/structure.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/sample/structure.gif -------------------------------------------------------------------------------- /sample/tabs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/sample/tabs.gif -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/assets/cross.svg -------------------------------------------------------------------------------- /src/assets/css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/assets/css.svg -------------------------------------------------------------------------------- /src/assets/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/assets/delete.svg -------------------------------------------------------------------------------- /src/assets/down-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/assets/down-arrow.svg -------------------------------------------------------------------------------- /src/assets/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/assets/download.svg -------------------------------------------------------------------------------- /src/assets/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/assets/error.png -------------------------------------------------------------------------------- /src/assets/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/assets/folder.svg -------------------------------------------------------------------------------- /src/assets/js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/assets/js.svg -------------------------------------------------------------------------------- /src/assets/jsx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/assets/jsx.svg -------------------------------------------------------------------------------- /src/assets/left-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/assets/left-arrow.svg -------------------------------------------------------------------------------- /src/assets/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/assets/manifest.json -------------------------------------------------------------------------------- /src/assets/new-file-colored.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/assets/new-file-colored.svg -------------------------------------------------------------------------------- /src/assets/new-file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/assets/new-file.svg -------------------------------------------------------------------------------- /src/assets/new-folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/assets/new-folder.svg -------------------------------------------------------------------------------- /src/assets/new-project.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/assets/new-project.svg -------------------------------------------------------------------------------- /src/assets/open-project.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/assets/open-project.svg -------------------------------------------------------------------------------- /src/assets/opened-folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/assets/opened-folder.svg -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/assets/readme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/assets/readme.svg -------------------------------------------------------------------------------- /src/assets/rename.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/assets/rename.svg -------------------------------------------------------------------------------- /src/assets/three-dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/assets/three-dots.svg -------------------------------------------------------------------------------- /src/assets/typescript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/assets/typescript.svg -------------------------------------------------------------------------------- /src/components/file-structure/Folder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/components/file-structure/Folder.tsx -------------------------------------------------------------------------------- /src/components/file-structure/MiniFolder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/components/file-structure/MiniFolder.tsx -------------------------------------------------------------------------------- /src/components/file-structure/Structure.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/components/file-structure/Structure.tsx -------------------------------------------------------------------------------- /src/components/file-structure/search/HighlightedText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/components/file-structure/search/HighlightedText.tsx -------------------------------------------------------------------------------- /src/components/file-structure/search/SearchContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/components/file-structure/search/SearchContainer.tsx -------------------------------------------------------------------------------- /src/components/file-structure/search/SearchInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/components/file-structure/search/SearchInput.tsx -------------------------------------------------------------------------------- /src/components/file-structure/search/SearchResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/components/file-structure/search/SearchResults.tsx -------------------------------------------------------------------------------- /src/components/file-structure/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/components/file-structure/utils/index.ts -------------------------------------------------------------------------------- /src/components/file-structure/widgets/CollapseBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/components/file-structure/widgets/CollapseBtn.tsx -------------------------------------------------------------------------------- /src/components/file-structure/widgets/CustomInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/components/file-structure/widgets/CustomInput.tsx -------------------------------------------------------------------------------- /src/components/file-structure/widgets/FileActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/components/file-structure/widgets/FileActions.tsx -------------------------------------------------------------------------------- /src/components/file-structure/widgets/ItemTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/components/file-structure/widgets/ItemTitle.tsx -------------------------------------------------------------------------------- /src/components/file-structure/widgets/ThreeDots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/components/file-structure/widgets/ThreeDots.tsx -------------------------------------------------------------------------------- /src/components/menus/Breadcrumbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/components/menus/Breadcrumbs.tsx -------------------------------------------------------------------------------- /src/components/menus/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/components/menus/Dialog.tsx -------------------------------------------------------------------------------- /src/components/menus/MenuContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/components/menus/MenuContext.tsx -------------------------------------------------------------------------------- /src/components/menus/Tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/components/menus/Tab.tsx -------------------------------------------------------------------------------- /src/components/menus/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/components/menus/Tabs.tsx -------------------------------------------------------------------------------- /src/hooks/useOutsideAlerter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/hooks/useOutsideAlerter.ts -------------------------------------------------------------------------------- /src/hooks/usePrependPortal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/hooks/usePrependPortal.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/lib/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/lib/index.d.ts -------------------------------------------------------------------------------- /src/lib/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/lib/index.tsx -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/state/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/state/context.ts -------------------------------------------------------------------------------- /src/state/features/structure/miniStructureSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/state/features/structure/miniStructureSlice.ts -------------------------------------------------------------------------------- /src/state/features/structure/structureSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/state/features/structure/structureSlice.ts -------------------------------------------------------------------------------- /src/state/features/structure/utils/downloadZip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/state/features/structure/utils/downloadZip.ts -------------------------------------------------------------------------------- /src/state/features/structure/utils/getFileTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/state/features/structure/utils/getFileTree.ts -------------------------------------------------------------------------------- /src/state/features/structure/utils/pathUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/state/features/structure/utils/pathUtil.ts -------------------------------------------------------------------------------- /src/state/features/structure/utils/sorting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/state/features/structure/utils/sorting.ts -------------------------------------------------------------------------------- /src/state/features/structure/utils/traversal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/state/features/structure/utils/traversal.ts -------------------------------------------------------------------------------- /src/state/features/tabs/tabsSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/state/features/tabs/tabsSlice.ts -------------------------------------------------------------------------------- /src/state/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/state/hooks.ts -------------------------------------------------------------------------------- /src/state/provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/state/provider.tsx -------------------------------------------------------------------------------- /src/state/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/state/store.ts -------------------------------------------------------------------------------- /src/types/Breadcrumbs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/types/Breadcrumbs.d.ts -------------------------------------------------------------------------------- /src/types/CollapseBtn.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/types/CollapseBtn.d.ts -------------------------------------------------------------------------------- /src/types/CustomInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/types/CustomInput.d.ts -------------------------------------------------------------------------------- /src/types/Dialog.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/types/Dialog.d.ts -------------------------------------------------------------------------------- /src/types/FileActions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/types/FileActions.d.ts -------------------------------------------------------------------------------- /src/types/Folder.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/types/Folder.d.ts -------------------------------------------------------------------------------- /src/types/HighlightedText.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/types/HighlightedText.d.ts -------------------------------------------------------------------------------- /src/types/ItemTitle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/types/ItemTitle.d.ts -------------------------------------------------------------------------------- /src/types/MenuContext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/types/MenuContext.d.ts -------------------------------------------------------------------------------- /src/types/MiniFolder.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/types/MiniFolder.d.ts -------------------------------------------------------------------------------- /src/types/SearchContainer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/types/SearchContainer.d.ts -------------------------------------------------------------------------------- /src/types/SearchInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/types/SearchInput.d.ts -------------------------------------------------------------------------------- /src/types/SearchResults.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/types/SearchResults.d.ts -------------------------------------------------------------------------------- /src/types/Structure.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/types/Structure.d.ts -------------------------------------------------------------------------------- /src/types/Tab.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/types/Tab.d.ts -------------------------------------------------------------------------------- /src/types/Tabs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/types/Tabs.d.ts -------------------------------------------------------------------------------- /src/types/ThreeDots.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/src/types/ThreeDots.d.ts -------------------------------------------------------------------------------- /src/types/index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteCode-IDE/virtual-file-system/HEAD/vite.config.ts --------------------------------------------------------------------------------