├── .eslintignore ├── .eslintrc ├── .github ├── FUNDING.yml └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── README.md ├── assets └── demo.png ├── package.json ├── playground ├── .gitignore ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── public │ └── images │ │ ├── a.jpeg │ │ └── ic-solar_gallery-add-bold.svg ├── src │ ├── App.module.css │ ├── App.tsx │ ├── App1.module.css │ ├── App1.tsx │ ├── index.css │ ├── main.tsx │ └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── scripts └── postbuild.ts ├── src ├── client │ └── index.html ├── core │ ├── composeConsoleLog.ts │ └── types.ts ├── esbuild.ts ├── hook.ts ├── index.ts ├── nuxt.ts ├── rollup.ts ├── server │ ├── dir.ts │ └── server.ts ├── vite.ts └── webpack.ts ├── test └── index.test.ts ├── tsconfig.json └── tsup.config.ts /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [hunghg255] 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/README.md -------------------------------------------------------------------------------- /assets/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/assets/demo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/package.json -------------------------------------------------------------------------------- /playground/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/playground/.gitignore -------------------------------------------------------------------------------- /playground/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/playground/README.md -------------------------------------------------------------------------------- /playground/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/playground/index.html -------------------------------------------------------------------------------- /playground/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/playground/package-lock.json -------------------------------------------------------------------------------- /playground/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/playground/package.json -------------------------------------------------------------------------------- /playground/public/images/a.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/playground/public/images/a.jpeg -------------------------------------------------------------------------------- /playground/public/images/ic-solar_gallery-add-bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/playground/public/images/ic-solar_gallery-add-bold.svg -------------------------------------------------------------------------------- /playground/src/App.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/playground/src/App.module.css -------------------------------------------------------------------------------- /playground/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/playground/src/App.tsx -------------------------------------------------------------------------------- /playground/src/App1.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/playground/src/App1.module.css -------------------------------------------------------------------------------- /playground/src/App1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/playground/src/App1.tsx -------------------------------------------------------------------------------- /playground/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/playground/src/index.css -------------------------------------------------------------------------------- /playground/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/playground/src/main.tsx -------------------------------------------------------------------------------- /playground/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | declare const process; 4 | -------------------------------------------------------------------------------- /playground/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/playground/tsconfig.json -------------------------------------------------------------------------------- /playground/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/playground/tsconfig.node.json -------------------------------------------------------------------------------- /playground/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/playground/vite.config.ts -------------------------------------------------------------------------------- /scripts/postbuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/scripts/postbuild.ts -------------------------------------------------------------------------------- /src/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/src/client/index.html -------------------------------------------------------------------------------- /src/core/composeConsoleLog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/src/core/composeConsoleLog.ts -------------------------------------------------------------------------------- /src/core/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/src/core/types.ts -------------------------------------------------------------------------------- /src/esbuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/src/esbuild.ts -------------------------------------------------------------------------------- /src/hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/src/hook.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/nuxt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/src/nuxt.ts -------------------------------------------------------------------------------- /src/rollup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/src/rollup.ts -------------------------------------------------------------------------------- /src/server/dir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/src/server/dir.ts -------------------------------------------------------------------------------- /src/server/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/src/server/server.ts -------------------------------------------------------------------------------- /src/vite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/src/vite.ts -------------------------------------------------------------------------------- /src/webpack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/src/webpack.ts -------------------------------------------------------------------------------- /test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/test/index.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/vite-console-debug/HEAD/tsup.config.ts --------------------------------------------------------------------------------