├── .gitignore ├── .prettierrc.js ├── package.json ├── packages ├── ui │ ├── package.json │ ├── src │ │ ├── components │ │ │ └── hello.tsx │ │ └── index.tsx │ └── tsconfig.json ├── utils │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json └── web │ ├── .eslintrc.js │ ├── index.html │ ├── index.tsx │ ├── package.json │ ├── tsconfig.json │ └── vite.config.js ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── readme.md ├── tsconfig.json └── turbo.json /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | publish 3 | build 4 | lib 5 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@innei/prettier') 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innei-template/pnpm-workspace-monorepo/HEAD/package.json -------------------------------------------------------------------------------- /packages/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innei-template/pnpm-workspace-monorepo/HEAD/packages/ui/package.json -------------------------------------------------------------------------------- /packages/ui/src/components/hello.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innei-template/pnpm-workspace-monorepo/HEAD/packages/ui/src/components/hello.tsx -------------------------------------------------------------------------------- /packages/ui/src/index.tsx: -------------------------------------------------------------------------------- 1 | export { Hello } from './components/hello' 2 | -------------------------------------------------------------------------------- /packages/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innei-template/pnpm-workspace-monorepo/HEAD/packages/ui/tsconfig.json -------------------------------------------------------------------------------- /packages/utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innei-template/pnpm-workspace-monorepo/HEAD/packages/utils/package.json -------------------------------------------------------------------------------- /packages/utils/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innei-template/pnpm-workspace-monorepo/HEAD/packages/utils/src/index.ts -------------------------------------------------------------------------------- /packages/utils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innei-template/pnpm-workspace-monorepo/HEAD/packages/utils/tsconfig.json -------------------------------------------------------------------------------- /packages/web/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@innei/eslint-config-react-ts') 2 | -------------------------------------------------------------------------------- /packages/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innei-template/pnpm-workspace-monorepo/HEAD/packages/web/index.html -------------------------------------------------------------------------------- /packages/web/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innei-template/pnpm-workspace-monorepo/HEAD/packages/web/index.tsx -------------------------------------------------------------------------------- /packages/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innei-template/pnpm-workspace-monorepo/HEAD/packages/web/package.json -------------------------------------------------------------------------------- /packages/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innei-template/pnpm-workspace-monorepo/HEAD/packages/web/tsconfig.json -------------------------------------------------------------------------------- /packages/web/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innei-template/pnpm-workspace-monorepo/HEAD/packages/web/vite.config.js -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innei-template/pnpm-workspace-monorepo/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innei-template/pnpm-workspace-monorepo/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innei-template/pnpm-workspace-monorepo/HEAD/readme.md -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innei-template/pnpm-workspace-monorepo/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innei-template/pnpm-workspace-monorepo/HEAD/turbo.json --------------------------------------------------------------------------------