We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b2dc1f commit 625dd8eCopy full SHA for 625dd8e
src/prompts/PromptNew.ts
@@ -2,7 +2,9 @@ import type { Choice, PromptObject } from 'prompts';
2
3
const tsTemplates: Choice[] = [
4
{ title: 'Default template (Recommended)', value: 'with-typescript-recommended' },
5
- { title: 'with Docker', value: 'with-docker' }
+ { title: 'with Docker', value: 'with-docker' },
6
+ { title: 'with tsup', value: 'with-tsup' },
7
+ { title: 'with SWC', value: 'with-swc' }
8
];
9
const jsTemplates: Choice[] = [{ title: 'Default template (Recommended)', value: 'with-javascript' }];
10
0 commit comments