File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import ora from "ora";
77import readline from "node:readline/promises" ;
88import { stdin as input , stdout as output } from "node:process" ;
99
10- marked . use ( new markedTerminal ( ) ) ;
10+ marked . use ( markedTerminal ( ) as any ) ;
1111
1212// 🔧 Configuración general
1313const DEFAULT_MODEL = "gpt-5.2" ; // 🧠 Modelo por defecto (ajusta según disponibilidad)
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ import ora from "ora"; // 🔄 Spinners animados para mostrar que estamos espera
3030const COPILOT_URL = "copilot-cli-server:4321" ;
3131
3232// 🎨 Configura marked para renderizar Markdown con colores en la terminal
33- marked . use ( markedTerminal ( ) ) ;
33+ marked . use ( markedTerminal ( ) as any ) ;
3434
3535// 🚀 Función principal auto-ejecutable (IIFE async)
3636( async ( ) => {
Original file line number Diff line number Diff line change 1+ {
2+ "compilerOptions" : {
3+ "target" : " ES2020" ,
4+ "module" : " ESNext" ,
5+ "lib" : [" ES2020" ],
6+ "moduleResolution" : " node" ,
7+ "allowJs" : true ,
8+ "strict" : false ,
9+ "esModuleInterop" : true ,
10+ "skipLibCheck" : true ,
11+ "forceConsistentCasingInFileNames" : true ,
12+ "resolveJsonModule" : true ,
13+ "noImplicitAny" : false ,
14+ "noUnusedLocals" : false ,
15+ "noUnusedParameters" : false ,
16+ "noImplicitReturns" : false
17+ },
18+ "include" : [
19+ " *.ts"
20+ ],
21+ "exclude" : [
22+ " node_modules" ,
23+ " dist"
24+ ]
25+ }
You can’t perform that action at this time.
0 commit comments