https://github.com/ulfsauer0815/recipes
Recipes! 👨🍳
https://github.com/ulfsauer0815/recipes
cookbook cooking pinia recipes typescript vite vue vue-composition-api vue-router vue3
Last synced: 5 months ago
JSON representation
Recipes! 👨🍳
- Host: GitHub
- URL: https://github.com/ulfsauer0815/recipes
- Owner: ulfsauer0815
- Created: 2022-03-25T17:19:50.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2026-01-12T19:19:42.000Z (5 months ago)
- Last Synced: 2026-01-13T00:43:08.684Z (5 months ago)
- Topics: cookbook, cooking, pinia, recipes, typescript, vite, vue, vue-composition-api, vue-router, vue3
- Language: Vue
- Homepage: https://ulfsauer0815.github.io/recipes
- Size: 5.31 MB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Recipes
My collection of recipes.
Uses Vue 3 with Vite, Vue Router and Pinia.
## Recommended IDE Setup
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=johnsoncodehk.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=johnsoncodehk.vscode-typescript-vue-plugin).
## Type Support for `.vue` Imports in TS
TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=johnsoncodehk.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types.
If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps:
1. Disable the built-in TypeScript Extension
1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette
2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)`
2. Reload the VSCode window by running `Developer: Reload Window` from the command palette.
## Customize configuration
See [Vite Configuration Reference](https://vitejs.dev/config/).
## Project Setup
```sh
npm install
```
### Compile and Hot-Reload for Development
```sh
npm run dev
```
### Type-Check, Compile and Minify for Production
```sh
npm run build
```
### Run Unit Tests with [Vitest](https://vitest.dev/)
```sh
npm run test:unit
```
### Lint with [ESLint](https://eslint.org/)
```sh
npm run lint
```