Coloquei o downlevelIteration: true no tsconfig e o erro persistiu.
###
Código do Relógio:
###
import style from './Relogio.module.scss';
interface Props {
tempo: number | undefined
}
export default function Relogio({tempo = 0}: Props) {
const minutos = Math.floor(tempo / 60);
const segundos = tempo % 60;
const [minutosDezena, minutoUnidade] = String(minutos);
const [segundoDezena, segundoUnidade] = String(segundos);
###
return (
<>
0
0
:
0
0
</>
);
}
###
###
Código do tsconfig.json
###