@@ -51,7 +51,7 @@ protected function configure()
51
51
->addOption ('breeze ' , null , InputOption::VALUE_NONE , 'Installs the Laravel Breeze scaffolding ' )
52
52
->addOption ('jet ' , null , InputOption::VALUE_NONE , 'Installs the Laravel Jetstream scaffolding ' )
53
53
->addOption ('dark ' , null , InputOption::VALUE_NONE , 'Indicate whether Breeze or Jetstream should be scaffolded with dark mode support ' )
54
- ->addOption ('typescript ' , null , InputOption::VALUE_NONE , 'Indicate whether Breeze should be scaffolded with TypeScript support (Experimental) ' )
54
+ ->addOption ('typescript ' , null , InputOption::VALUE_NONE , 'Indicate whether Breeze should be scaffolded with TypeScript support ' )
55
55
->addOption ('ssr ' , null , InputOption::VALUE_NONE , 'Indicate whether Breeze or Jetstream should be scaffolded with Inertia SSR support ' )
56
56
->addOption ('api ' , null , InputOption::VALUE_NONE , 'Indicates whether Jetstream should be scaffolded with API support ' )
57
57
->addOption ('teams ' , null , InputOption::VALUE_NONE , 'Indicates whether Jetstream should be scaffolded with team support ' )
@@ -499,7 +499,7 @@ protected function promptForBreezeOptions(InputInterface $input)
499
499
options: [
500
500
'dark ' => 'Dark mode ' ,
501
501
'ssr ' => 'Inertia SSR ' ,
502
- 'typescript ' => 'TypeScript (experimental) ' ,
502
+ 'typescript ' => 'TypeScript ' ,
503
503
],
504
504
default: array_filter ([
505
505
$ input ->getOption ('dark ' ) ? 'dark ' : null ,
0 commit comments