fork of hey-api/openapi-ts because I need some additional things
at main 45 lines 997 B view raw view rendered
1# vue-project 2 3This template should help get you started developing with Vue 3 in Vite. 4 5## Recommended IDE Setup 6 7[VSCode](https://code.visualstudio.com) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). 8 9## Type Support for `.vue` Imports in TS 10 11TypeScript 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 [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. 12 13## Customize configuration 14 15See [Vite Configuration Reference](https://vitejs.dev/config). 16 17## Project Setup 18 19```sh 20pnpm install 21``` 22 23### Compile and Hot-Reload for Development 24 25```sh 26pnpm dev 27``` 28 29### Type-Check, Compile and Minify for Production 30 31```sh 32pnpm build 33``` 34 35### Run Unit Tests with [Vitest](https://vitest.dev) 36 37```sh 38pnpm test:unit 39``` 40 41### Lint with [ESLint](https://eslint.org) 42 43```sh 44pnpm lint 45```