First, install the Typescript Native Preview extension for VS Code, which provides support for tsgo, then activate the extension with the command TypeScript (Native Preview): Enable (Experimental)
Note
The tsgo command is used to check for type errors before building the application. It's substantially faster than tsc --noEmit but still in active development as Typescript 7.0.
Then, run the development server:
pnpm devOpen http://localhost:3000 with your browser.
Build the app:
pnpm buildStart the production server locally:
pnpm startDeploy with vinext:
pnpm deploy