Project Status: π¨ Alpha
A set of tools for better developer experience aka Vue Developer Experience.
- Analyze β statically analyzes Vue components and provides API info.
- Compiler SFC β a light weight build of
@vue/compiler-sfc
(onlyparse()
functionality is provided). - Compiler TSX β a
<template>
to representationalTSX
compiler (generated TSX may not be functional but ensures type consistency). - Preview β a quick-prototyping and component management tool
- ProjectConfig β a json config file to define project preferences.
- Template AST Types β a collection of utility functions to work with
<template>
AST, think@babel/types
but for Vue. - Typecheck β a command line tool to check types, functionally equivalent to
tsc --noEmit
but includes .vue support. - TS Plugin β enables TypeScript language server to understand
.vue
files. - TS Plugin for Vetur β provides missing features to vetur, same as TS Plugin but. #2145
- Vue Syntax Highlight β provides syntax highlight for VS Code.
- Vue Language Features β provides typescript integration for VS Code.
- Vue Virtual TextDocument β creates a virtual file system to represent blocks in SFC as files.