generating a project with tsup, biome, vitest
generating a tiny project use:
First, install Yeoman and generator-stupid using npm (we assume you have pre-installed node.js).
npm install -g yo generator-stupid
Then generate your new project:
yo stupid
Scaffolds out a complete generator directory structure for you:
.
├── .github/
│ └── workflows/
│ └── cov.yml
├── src/
│ └── index.ts
├── test/
│ └── index.test.ts
├── types/
│ └── index.d.ts
├── .editorconfig
├── .gitignore
├── biome.json
├── LICENSE
├── package.json
├── README.md
├── tsconfig.json
├── tsup.config.ts
└── vitest.config.ts