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
according to docs :
By default, recommended:true will be based on the following directory structure as a convention.
|--extension // extension code
| |--index.ts
|--src // front-end code
| |--App.vue
| |--main.ts
|--index.html
i have a yarn workspace setup
|--extension // extension code
| |--index.ts
|--webview // front-end code
| |--src
| | | --main.ts
| vite.config.mts
is there an option to specify the entry point for the webviews? same way you can do
vscode({extension: {
entry: "../extension/index.ts",
}}
The text was updated successfully, but these errors were encountered:
according to docs :
By default, recommended:true will be based on the following directory structure as a convention.
|--extension // extension code
| |--index.ts
|--src // front-end code
| |--App.vue
| |--main.ts
|--index.html
i have a yarn workspace setup
|--extension // extension code
| |--index.ts
|--webview // front-end code
| |--src
| | | --main.ts
| vite.config.mts
is there an option to specify the entry point for the webviews? same way you can do
vscode({extension: {
entry: "../extension/index.ts",
}}
The text was updated successfully, but these errors were encountered: