Skip to content

BunViteRuntime

@tsed/cli

Usage

typescript
import { BunViteRuntime } from "@tsed/cli";

See /packages/cli/src/runtimes/supports/BunViteRuntime.ts.

Overview

ts
class BunViteRuntime extends BaseRuntime {
    readonly name = "bun-vite";
    readonly cmd = "bun";
    readonly order: number;
    files(): string[];
    compile(): string;
    startDev(): string;
    startProd(args: string): string;
    devDependencies(): Record<string, any>;
}

readonly name

ts
readonly name = "bun-vite";

readonly cmd

ts
readonly cmd = "bun";

readonly order

ts
readonly order: number;

files

ts
files(): string[];

compile

ts
compile(): string;

startDev

ts
startDev(): string;

startProd

ts
startProd(args: string): string;

devDependencies

ts
devDependencies(): Record<string, any>;

Released under the MIT License.