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
The Radix version, pre v1, had the following initialization question that allowed us to specify an abnormal location for our tsconfig.json file. This was particularly useful for projects needing more than one tsconfig (one for server and another for client)
Where is your tsconfig.json or jsconfig.json file? › ./tsconfig.json
To specify I want to use the tsconfig at ./inertia/tsconfig.json and this worked great! This allowed my AdonisJS app to use the tsconfig.json file in the root of my project and for the Inertia VueJS app to use the ./inertia/tsconfig.json.
Was support for this dropped in v1 with Reka UI? It seems the preflight check is specifically only searching the root of the project for tsconfig.json, tsconfig.web.json, or tsconfig.app.json in that order. This, causes the init command to only see the tsconfig.json file in the root of my project, which is meant for the AdonisJS application, not the Inertia VueJS app.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
The Radix version, pre v1, had the following initialization question that allowed us to specify an abnormal location for our tsconfig.json file. This was particularly useful for projects needing more than one tsconfig (one for server and another for client)
Where is your tsconfig.json or jsconfig.json file? › ./tsconfig.json
For example, in the below project structure:
I have the following
components.json
To specify I want to use the tsconfig at
./inertia/tsconfig.json
and this worked great! This allowed my AdonisJS app to use thetsconfig.json
file in the root of my project and for the Inertia VueJS app to use the./inertia/tsconfig.json
.Was support for this dropped in v1 with Reka UI? It seems the preflight check is specifically only searching the root of the project for
tsconfig.json
,tsconfig.web.json
, ortsconfig.app.json
in that order. This, causes the init command to only see thetsconfig.json
file in the root of my project, which is meant for the AdonisJS application, not the Inertia VueJS app.Beta Was this translation helpful? Give feedback.
All reactions