Skip to content

Vite

Terminal window
tinkerise web vite my-vite-app --template react
Terminal window
tinkerise web vite my-vite-app --template react --typescript

Use vite when you want:

  • Fast dev startup and HMR for frontend projects
  • Flexible template-based scaffolding (React, Vue, Svelte, and more)
  • A lightweight foundation you can shape yourself
  • Node.js >=18.0.0
  • npx available in your Node install
tinkerise flagNative create-vite flagNotes
--typescript(resolved in template flow)Vite TS variants come from template choice
--template <template>--template <template>Common examples: react, react-ts, vue-ts
  • tinkerise delegates to create-vite.
  • Vite does not expose a single native TypeScript flag in registry mapping.
  • TypeScript behavior is controlled by template choice (react-ts, vue-ts, etc.).
  • Pass-through args are enabled.

Template flow examples:

Terminal window
tinkerise web vite my-vite-app --template react-ts
tinkerise web vite my-vite-app --template vue-ts

You get the official Vite template output, including:

  • Template-specific source files and config
  • Vite scripts and dependencies in package.json
  • Optional TypeScript setup when using a *-ts template variant

See full CLI flags: /reference/commands/