├── .env ├── .env.production ├── .env.qa ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .lintstagedrc ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .stylelintignore ├── .stylelintrc.js ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── commitlint.config.js ├── favicon.ico ├── index.html ├── package.json ├── postcss.config.js ├── screenshot.png ├── src ├── assets │ ├── images │ │ └── react.png │ └── svg │ │ └── react.svg ├── components │ ├── AutoSizer.tsx │ ├── Error │ │ ├── index.module.scss │ │ ├── index.test.tsx │ │ └── index.tsx │ └── PageLoading │ │ ├── index.module.scss │ │ └── index.tsx ├── constants │ ├── index.ts │ └── socket.ts ├── containers │ ├── shared │ │ ├── App │ │ │ ├── HashRouter.tsx │ │ │ ├── IntlWrapper.tsx │ │ │ ├── Provider.tsx │ │ │ ├── ht.ts │ │ │ ├── index.module.scss │ │ │ └── index.tsx │ │ └── NotAuthRouteComponent │ │ │ └── index.tsx │ └── views │ │ ├── DouyinVideo │ │ ├── index.module.scss │ │ └── index.tsx │ │ ├── Home │ │ ├── Header │ │ │ ├── index.module.scss │ │ │ └── index.tsx │ │ ├── Sider │ │ │ ├── Menu.tsx │ │ │ ├── index.module.scss │ │ │ └── index.tsx │ │ ├── index.module.scss │ │ ├── index.tsx │ │ └── menu.tsx │ │ ├── Login │ │ ├── index.module.scss │ │ └── index.tsx │ │ ├── SocketDebugger │ │ ├── Browse │ │ │ ├── Message.tsx │ │ │ ├── index.module.scss │ │ │ └── index.tsx │ │ ├── Handler │ │ │ ├── Connect.tsx │ │ │ ├── DataFormat.tsx │ │ │ ├── Send.tsx │ │ │ ├── Type.tsx │ │ │ ├── index.module.scss │ │ │ └── index.tsx │ │ ├── index.module.scss │ │ └── index.tsx │ │ └── Users │ │ ├── Header │ │ ├── index.module.scss │ │ └── index.tsx │ │ ├── UserModal.tsx │ │ ├── UserTable.tsx │ │ ├── index.module.scss │ │ └── index.tsx ├── env.d.ts ├── errorHandler.ts ├── index.scss ├── index.tsx ├── locales │ ├── en_US.json │ ├── loader.ts │ └── zh_CN.json ├── services │ └── websocket │ │ ├── index.ts │ │ ├── socketIO.ts │ │ └── websocket.ts ├── setupTests.ts ├── store │ ├── authStore │ │ ├── index.ts │ │ ├── syncUserInfo.ts │ │ └── type.d.ts │ ├── globalStore │ │ ├── index.ts │ │ └── type.d.ts │ ├── index.ts │ ├── socketStore │ │ ├── index.ts │ │ └── type.d.ts │ ├── useRootStore.ts │ └── userStore │ │ ├── index.ts │ │ └── type.d.ts ├── styles │ ├── _base.scss │ └── _var.scss └── utils │ ├── hooks.ts │ ├── index.ts │ └── request.ts ├── tsconfig.json ├── typings ├── assets.d.ts ├── attr.d.ts ├── global.d.ts └── store.d.ts ├── vite.config.ts └── yarn.lock /.env: -------------------------------------------------------------------------------- 1 | VITE_BASEURL=https://showcase.jackple.com/ 2 | VITE_APP_ENV=dev -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- 1 | VITE_BASEURL=https://showcase.jackple.com/ 2 | VITE_APP_ENV=prod -------------------------------------------------------------------------------- /.env.qa: -------------------------------------------------------------------------------- 1 | VITE_BASEURL=https://showcase.jackple.com/ 2 | VITE_APP_ENV=qa -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /node_nodules 2 | /dist 3 | /src/**/*.scss.d.ts 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npm run lint-staged -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /src/**/*.scss.d.ts 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/.prettierrc -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/.stylelintignore -------------------------------------------------------------------------------- /.stylelintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/.stylelintrc.js -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ['@commitlint/config-conventional'] } 2 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: [require('autoprefixer')] 3 | } 4 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/assets/images/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/assets/images/react.png -------------------------------------------------------------------------------- /src/assets/svg/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/assets/svg/react.svg -------------------------------------------------------------------------------- /src/components/AutoSizer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/components/AutoSizer.tsx -------------------------------------------------------------------------------- /src/components/Error/index.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/components/Error/index.module.scss -------------------------------------------------------------------------------- /src/components/Error/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/components/Error/index.test.tsx -------------------------------------------------------------------------------- /src/components/Error/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/components/Error/index.tsx -------------------------------------------------------------------------------- /src/components/PageLoading/index.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/components/PageLoading/index.module.scss -------------------------------------------------------------------------------- /src/components/PageLoading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/components/PageLoading/index.tsx -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/constants/socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/constants/socket.ts -------------------------------------------------------------------------------- /src/containers/shared/App/HashRouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/shared/App/HashRouter.tsx -------------------------------------------------------------------------------- /src/containers/shared/App/IntlWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/shared/App/IntlWrapper.tsx -------------------------------------------------------------------------------- /src/containers/shared/App/Provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/shared/App/Provider.tsx -------------------------------------------------------------------------------- /src/containers/shared/App/ht.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/shared/App/ht.ts -------------------------------------------------------------------------------- /src/containers/shared/App/index.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/shared/App/index.module.scss -------------------------------------------------------------------------------- /src/containers/shared/App/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/shared/App/index.tsx -------------------------------------------------------------------------------- /src/containers/shared/NotAuthRouteComponent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/shared/NotAuthRouteComponent/index.tsx -------------------------------------------------------------------------------- /src/containers/views/DouyinVideo/index.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/views/DouyinVideo/index.module.scss -------------------------------------------------------------------------------- /src/containers/views/DouyinVideo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/views/DouyinVideo/index.tsx -------------------------------------------------------------------------------- /src/containers/views/Home/Header/index.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/views/Home/Header/index.module.scss -------------------------------------------------------------------------------- /src/containers/views/Home/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/views/Home/Header/index.tsx -------------------------------------------------------------------------------- /src/containers/views/Home/Sider/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/views/Home/Sider/Menu.tsx -------------------------------------------------------------------------------- /src/containers/views/Home/Sider/index.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/views/Home/Sider/index.module.scss -------------------------------------------------------------------------------- /src/containers/views/Home/Sider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/views/Home/Sider/index.tsx -------------------------------------------------------------------------------- /src/containers/views/Home/index.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/views/Home/index.module.scss -------------------------------------------------------------------------------- /src/containers/views/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/views/Home/index.tsx -------------------------------------------------------------------------------- /src/containers/views/Home/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/views/Home/menu.tsx -------------------------------------------------------------------------------- /src/containers/views/Login/index.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/views/Login/index.module.scss -------------------------------------------------------------------------------- /src/containers/views/Login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/views/Login/index.tsx -------------------------------------------------------------------------------- /src/containers/views/SocketDebugger/Browse/Message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/views/SocketDebugger/Browse/Message.tsx -------------------------------------------------------------------------------- /src/containers/views/SocketDebugger/Browse/index.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/views/SocketDebugger/Browse/index.module.scss -------------------------------------------------------------------------------- /src/containers/views/SocketDebugger/Browse/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/views/SocketDebugger/Browse/index.tsx -------------------------------------------------------------------------------- /src/containers/views/SocketDebugger/Handler/Connect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/views/SocketDebugger/Handler/Connect.tsx -------------------------------------------------------------------------------- /src/containers/views/SocketDebugger/Handler/DataFormat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/views/SocketDebugger/Handler/DataFormat.tsx -------------------------------------------------------------------------------- /src/containers/views/SocketDebugger/Handler/Send.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/views/SocketDebugger/Handler/Send.tsx -------------------------------------------------------------------------------- /src/containers/views/SocketDebugger/Handler/Type.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/views/SocketDebugger/Handler/Type.tsx -------------------------------------------------------------------------------- /src/containers/views/SocketDebugger/Handler/index.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/views/SocketDebugger/Handler/index.module.scss -------------------------------------------------------------------------------- /src/containers/views/SocketDebugger/Handler/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/views/SocketDebugger/Handler/index.tsx -------------------------------------------------------------------------------- /src/containers/views/SocketDebugger/index.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/views/SocketDebugger/index.module.scss -------------------------------------------------------------------------------- /src/containers/views/SocketDebugger/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/views/SocketDebugger/index.tsx -------------------------------------------------------------------------------- /src/containers/views/Users/Header/index.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/views/Users/Header/index.module.scss -------------------------------------------------------------------------------- /src/containers/views/Users/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/views/Users/Header/index.tsx -------------------------------------------------------------------------------- /src/containers/views/Users/UserModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/views/Users/UserModal.tsx -------------------------------------------------------------------------------- /src/containers/views/Users/UserTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/views/Users/UserTable.tsx -------------------------------------------------------------------------------- /src/containers/views/Users/index.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/views/Users/index.module.scss -------------------------------------------------------------------------------- /src/containers/views/Users/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/containers/views/Users/index.tsx -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/errorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/errorHandler.ts -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/index.scss -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/locales/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/locales/en_US.json -------------------------------------------------------------------------------- /src/locales/loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/locales/loader.ts -------------------------------------------------------------------------------- /src/locales/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/locales/zh_CN.json -------------------------------------------------------------------------------- /src/services/websocket/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/services/websocket/index.ts -------------------------------------------------------------------------------- /src/services/websocket/socketIO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/services/websocket/socketIO.ts -------------------------------------------------------------------------------- /src/services/websocket/websocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/services/websocket/websocket.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/store/authStore/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/store/authStore/index.ts -------------------------------------------------------------------------------- /src/store/authStore/syncUserInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/store/authStore/syncUserInfo.ts -------------------------------------------------------------------------------- /src/store/authStore/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/store/authStore/type.d.ts -------------------------------------------------------------------------------- /src/store/globalStore/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/store/globalStore/index.ts -------------------------------------------------------------------------------- /src/store/globalStore/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/store/globalStore/type.d.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/socketStore/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/store/socketStore/index.ts -------------------------------------------------------------------------------- /src/store/socketStore/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/store/socketStore/type.d.ts -------------------------------------------------------------------------------- /src/store/useRootStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/store/useRootStore.ts -------------------------------------------------------------------------------- /src/store/userStore/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/store/userStore/index.ts -------------------------------------------------------------------------------- /src/store/userStore/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/store/userStore/type.d.ts -------------------------------------------------------------------------------- /src/styles/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/styles/_base.scss -------------------------------------------------------------------------------- /src/styles/_var.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/styles/_var.scss -------------------------------------------------------------------------------- /src/utils/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/utils/hooks.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/src/utils/request.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/assets.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/typings/assets.d.ts -------------------------------------------------------------------------------- /typings/attr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/typings/attr.d.ts -------------------------------------------------------------------------------- /typings/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/typings/global.d.ts -------------------------------------------------------------------------------- /typings/store.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/typings/store.d.ts -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YDJ-FE/ts-react-vite_or_webpack/HEAD/yarn.lock --------------------------------------------------------------------------------