-
-
Notifications
You must be signed in to change notification settings - Fork 169
Expand file tree
/
Copy pathtypes.ts
More file actions
27 lines (25 loc) · 631 Bytes
/
types.ts
File metadata and controls
27 lines (25 loc) · 631 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import type { PackageManager } from '@tanstack/cta-engine'
export type TemplateOptions = 'typescript' | 'javascript' | 'file-router'
export interface CliOptions {
template?: TemplateOptions
framework?: string
tailwind?: boolean
packageManager?: PackageManager
toolchain?: string
deployment?: string
projectName?: string
git?: boolean
addOns?: Array<string> | boolean
listAddOns?: boolean
addonDetails?: string
mcp?: boolean
mcpSse?: boolean
starter?: string
targetDir?: string
interactive?: boolean
ui?: boolean
devWatch?: string
install?: boolean
addOnConfig?: string
force?: boolean
}