Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/cli/commands/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,11 @@ async function createProject(cwd: ProjectPath, options: Options) {
language: () => {
if (options.types) return Promise.resolve(options.types);
return p.select<LanguageType>({
message: 'Add type checking with Typescript?',
message: 'Add type checking with TypeScript?',
initialValue: 'typescript',
options: [
{ label: 'Yes, using Typescript syntax', value: 'typescript' },
{ label: 'Yes, using Javascript with JSDoc comments', value: 'checkjs' },
{ label: 'Yes, using TypeScript syntax', value: 'typescript' },
{ label: 'Yes, using JavaScript with JSDoc comments', value: 'checkjs' },
{ label: 'No', value: 'none' }
]
});
Expand Down