├── .eslintrc.cjs ├── .gitignore ├── index.html ├── package.json ├── pnpm-lock.yaml ├── public └── vite.svg ├── readme.md ├── src ├── App.css ├── App.tsx ├── assets │ └── react.svg ├── hooks │ └── useFileWorker.ts ├── index.css ├── main.tsx ├── types │ ├── index.ts │ └── worker.ts ├── vite-env.d.ts └── workers │ └── file.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LFSCamargo/files-heavylifting-react/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LFSCamargo/files-heavylifting-react/HEAD/.gitignore -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LFSCamargo/files-heavylifting-react/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LFSCamargo/files-heavylifting-react/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LFSCamargo/files-heavylifting-react/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LFSCamargo/files-heavylifting-react/HEAD/public/vite.svg -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LFSCamargo/files-heavylifting-react/HEAD/readme.md -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LFSCamargo/files-heavylifting-react/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LFSCamargo/files-heavylifting-react/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LFSCamargo/files-heavylifting-react/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/hooks/useFileWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LFSCamargo/files-heavylifting-react/HEAD/src/hooks/useFileWorker.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LFSCamargo/files-heavylifting-react/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LFSCamargo/files-heavylifting-react/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./worker"; 2 | -------------------------------------------------------------------------------- /src/types/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LFSCamargo/files-heavylifting-react/HEAD/src/types/worker.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/workers/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LFSCamargo/files-heavylifting-react/HEAD/src/workers/file.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LFSCamargo/files-heavylifting-react/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LFSCamargo/files-heavylifting-react/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LFSCamargo/files-heavylifting-react/HEAD/vite.config.ts --------------------------------------------------------------------------------