estoy
v0.8.6
Published
> Learn the Vite source code (Simpler)
Downloads
6
Readme
estoy
Learn the Vite source code (Simpler)
Used
npm i estoy
// package.json
"scripts": {
"dev": "estoy",
}
estoy GlobalCommonOptions
interface GlobalCommonOptions {
d?: boolean | string
debug?: boolean | string
mode?: string
c?: string
config?: string
force?: boolean
}
estoy dev server options
export interface CommonServerOption {
port?: number
host?: string | boolean
open?: boolean | string
}
export interface ServerOptions extends CommonServerOption {
watch?: WatchOptions
hmr?: boolean
}