[PROMOÇÃO] Assine com + 30% de desconto ANUAL MENSAL (últimas horas)
Leonardo Szpaler Pereira
Criador Leonardo Szpaler Pereira 21/07/2024

mesmo utilizando o prevent no submit o mesmo nao abre o auth do back end e muda a url para o # passado no form action e o mesmo acusa um erro no finally 

Property 'finally' does not exist on type 'Promise<void>'. Do you need to change your target library? Try changing the 'lib' compiler option to 'es2018' or later.Vetur(2550)
any
(method) Promise<void>.finally(onfinally?: (() => void) | null | undefined): Promise<void>

Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The resolved value cannot be modified from the callback.

@param onfinally — The callback to execute when the Promise is settled (fulfilled or rejected).

@returns — A Promise for the completion of the callback.

Criador Leonardo Szpaler Pereira 21/07/2024

adicionei isso ao meu tsconfig.json e ambos os problemas mencionados pararam! 

 

{
  "compilerOptions": {
    "target": "es2018",        
    "module": "esnext",          
    "moduleResolution": "node",  
    "strict": true,            
    "jsx": "preserve",          
    "esModuleInterop": true,    
    "skipLibCheck": true,        
    "forceConsistentCasingInFileNames": true,  
    "resolveJsonModule": true,  
    "allowSyntheticDefaultImports": true,    
    "isolatedModules": true,    
    "strictNullChecks": true    
  },
  "files": [],
  "references": [
    {
      "path": "./tsconfig.app.json"
    },
    {
      "path": "./tsconfig.node.json"
    }
  ]
}
Leonardo Szpaler Pereira
Manager Carlos Ferreira 21/07/2024

Olá, Leonardo! Tudo bem?

 

Que bom que conseguiu resolver, meus parabéns!!!

Carlos Ferreira
Sabe a Solução? Ajude a resolver!

Precisa estar logado para conseguir responder a este ticket!

Clique Aqui Para Entrar!