dev01 9478e7e1ca youhua | 1 年間 前 | |
---|---|---|
.vscode | 1 年間 前 | |
cypress | 1 年間 前 | |
nginx | 1 年間 前 | |
public | 1 年間 前 | |
src | 1 年間 前 | |
.eslintrc.cjs | 1 年間 前 | |
.gitignore | 1 年間 前 | |
.prettierrc.json | 1 年間 前 | |
Dockerfile | 1 年間 前 | |
README.md | 1 年間 前 | |
env.d.ts | 1 年間 前 | |
index.html | 1 年間 前 | |
package-lock.json | 1 年間 前 | |
package.json | 1 年間 前 | |
tsconfig.app.json | 1 年間 前 | |
tsconfig.config.json | 1 年間 前 | |
tsconfig.json | 1 年間 前 | |
tsconfig.vitest.json | 1 年間 前 | |
vite.config.ts | 1 年間 前 | |
yarn.lock | 1 年間 前 |
This template should help get you started developing with Vue 3 in Vite.
VSCode + Volar (and disable Vetur) + TypeScript Vue Plugin (Volar).
.vue
Imports in TSTypeScript 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) 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 that is more performant. You can enable it by the following steps:
Extensions: Show Built-in Extensions
from VSCode's command palette
2) Find TypeScript and JavaScript Language Features
, right click and select Disable (Workspace)
Developer: Reload Window
from the command palette.See Vite Configuration Reference.
npm install
npm run dev
npm run build
npm run test:unit
npm run test:e2e:dev
This runs the end-to-end tests against the Vite development server. It is much faster than the production build.
But it's still recommended to test the production build with test:e2e
before deploying (e.g. in CI environments):
npm run build
npm run test:e2e
npm run lint