Generate vue typescript components.
Install the package globally to use as global command in any folder
npm i -g vue-ts-component-generator
Just run command in terminal
vue:component generate {component}
and replace {component} with your component name
Since Version 0.1.6 you can set the path where your components are stored. For now there is a default Path for the Laravel-Environment, but you can set it to every path you want.
Since version 0.1.7 the package following the component-naming-convetion of Vue-CLI. So you should name your Components in upper-camel-case (e.g. MyHappyComponent). The package creates the component-folder in kebab-case, the component-files itself created in the upper-camel-case.
path/to/components/my-happy-component/MyHappyComponent.ts
For sure you can set the component-naming as before. Only the camel-case-version is beeing affected.