You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 8, 2021. It is now read-only.
An error is reported at tsconfig.json about babel.config.js being overwritten after build or something like that.
This answer explain it's cause, while this reflect our current scenario: it's Quasar app who decide to generate into dist folder, but TS extension doesn't know about this (because it's probably managed at a lower level via Webpack) and complains.
An error is reported at
tsconfig.json
aboutbabel.config.js
being overwritten after build or something like that.This answer explain it's cause, while this reflect our current scenario: it's Quasar app who decide to generate into
dist
folder, but TS extension doesn't know about this (because it's probably managed at a lower level via Webpack) and complains.It can be fixed by changing options like this:
EDIT
or (preferred, if you are not using this configuration also to directly compile files) like this
Output is managed by Webpack, so we don't really need TypeScript to emit any file.
The text was updated successfully, but these errors were encountered: