@jazim/generator-ts-scaffold
v1.0.5
Published
TypeScript scaffolding for Yeoman generators
Readme
TypeScript Scaffolding for Yeoman Generators
This is a Yeoman generator for scaffolding TypeScript projects. It provides a set of templates and best practices for building TypeScript applications.
Features
- TypeScript support
- Pre-configured project structure
- Built-in best practices
Note: You must need to prefix the package name with generator- when using it with Yeoman. And if you are using a scoped package, it should be prefixed with @scope/generator-.
Installation
npm install -g yo
npm install -g @jazim/generator-ts-scaffoldUsage
yo @jazim/ts-scaffoldFor Local Development
If you want to develop this generator locally, you can link it globally:
npm linkAnd to verify that the generator is linked correctly, you can run:
yo --generatorsYou can unlink it later after you are done with development:
npm unlink -g @jazim/generator-ts-scaffoldTo verify that the generator is unlinked, you can run:
npm list -g --depth=0