We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have laravel-project and inside this project is a folder frontend, where i have a vue project. This vue project is generated by vue-cli.
Laravel - app - bootstrap ... - frontend <!-- vue-cli generated --> -- src - public - resources ... - jsconfig.json
I am opening the whole project. So i created at top level jsconfig file with:
{ "include": ["./frontend/src/**/*"], "compilerOptions": { "baseUrl": ".", "paths": { "@/*": ["frontend/src/*"] } }, "exclude": ["./frontendnode_modules"] }
But i didnt get intellisense to work.
The text was updated successfully, but these errors were encountered:
You need to create jsconfig.json and package.json in frontend/src/. After that open frontend/src folder in VSCode.
jsconfig.json
package.json
frontend/src/
frontend/src
Sorry, something went wrong.
More advanced support will need to wait for this RFC and RFC.
Ok, thanks.
No branches or pull requests
Info
Problem
I have laravel-project and inside this project is a folder frontend, where i have a vue project.
This vue project is generated by vue-cli.
I am opening the whole project.
So i created at top level jsconfig file with:
But i didnt get intellisense to work.
The text was updated successfully, but these errors were encountered: