-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(): fix tsconfig vite and vitest config #444
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lo veo bien, dejo dudas para entender unas cositas jeje
"./app/frontend/*" | ||
] | ||
}, | ||
"types": ["vitest/globals", "vite/client"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
por qué hay que agregar los types acá?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fue un poquito prueba y error cachar que es lo que funcionaba y llegué a esto. Pero haciendo doble click, la configuración de este archivo, y en particular estas compilerOptions
se aplican a lo que está en la carpeta frontend
, y ahí es donde tenemos el mock de api, entonces debería estar acá pa que aplique. Aparte aquí dice que se pone en los docs, en el segundo y el tercer link que puse
@@ -3,7 +3,6 @@ | |||
"browser": true, | |||
"es2021": true, | |||
"node": true, | |||
"vi": true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
y esto hay que eliminarlo porque ya no sirve?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
claro, con el types vitest/globals
ya se está agregando a nivel de typescript. A nivel de eslint no cacho bien por qué, pero no me alega, entonces creo que no es necesario. No se si con que esté en TS es suficiente, o quizás que este con globals la config hace la pega
"compilerOptions": { | ||
"composite": true, | ||
"types": ["node", "vitest/globals"] | ||
"types": [ | ||
"node" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
y por qué se saca el type de acá?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hablamos con memo que parece que debería ir acá porque es config de node y no de browser, y este archivo es la config de TS de node. Pero no funcionaba, creo que porque este archivo no mira lo que está en la carpeta frontend (?)
5fb9c81
to
6c4859f
Compare
Se arreglan un par de cosas relacionadas a ts y vitest: