UNPKG

595 BPlain TextView Raw
1export type Profiler = {
2 NAME: string
3 FRAMEWORK: string | undefined
4 TYPEWEB: 'SPA' | 'SSR'
5 TOOLSBUILD: string | undefined
6 SAFE_NAME: string
7 LANGUAGE: 'TypeScript' | 'JavaScript'
8 PORT?: number
9 CSS_EXTENSION?: 'css' | 'scss' | 'less'
10 CSS?: 'CSS' | 'Tailwind' | 'Bootsrap'
11 CONTAINER?: string
12}
13
14export type Project = {
15 framework?: string
16 css?: 'CSS' | 'Tailwind' | 'Bootsrap'
17 typeweb?: 'SPA' | 'SSR'
18 toolsbuild?: string
19 language?: 'javascript' | 'typescript'
20 port?: number
21 name: string
22 type: 'Application' | 'SingleSpa' | 'StoryBook' | 'Packages' | 'Flutter'
23}