Skip to content
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

Merged
merged 1 commit into from
Jun 20, 2023

Conversation

difernandez
Copy link
Contributor

Se arreglan un par de cosas relacionadas a ts y vitest:

@difernandez difernandez requested review from gmq and aaguilarg and removed request for gmq June 20, 2023 17:56
Copy link
Contributor

@aaguilarg aaguilarg left a 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"]
Copy link
Contributor

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á?

Copy link
Contributor Author

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,
Copy link
Contributor

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?

Copy link
Contributor Author

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"
Copy link
Contributor

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á?

Copy link
Contributor Author

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 (?)

@difernandez difernandez force-pushed the fix-vite-and-ts-errors branch from 5fb9c81 to 6c4859f Compare June 20, 2023 20:25
@difernandez difernandez merged commit 42de8eb into master Jun 20, 2023
@difernandez difernandez deleted the fix-vite-and-ts-errors branch June 20, 2023 20:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

2 participants