vuejs / language-tools

⚡ High-performance Vue language tooling based-on Volar.js
https://marketplace.visualstudio.com/items?itemName=Vue.volar
MIT License
5.55k stars 373 forks source link

vue-tsc actual readme #4400

Closed FanilZarip closed 1 month ago

FanilZarip commented 1 month ago

Where I can find actual Readme?

Because on latest vue Project package.json have type-chek: "vue-tsc --build --force" And I did not find that flags.

On readme just this command: vue-tsc --declaration --emitDeclarationOnly

But this comand do not build dts without --build flag

RayGuo-ergou commented 1 month ago

If using SFCs, use the vue-tsc utility for command line type checking and type declaration generation. vue-tsc is a wrapper around tsc, TypeScript's own command line interface.

from https://vuejs.org/guide/typescript/overview

which means you can reference to tsc 's document.