Skip to content

Commit

Permalink
chore: add required files to let Vetur work on project (#8364)
Browse files Browse the repository at this point in the history
  • Loading branch information
pdanpdan committed Jan 22, 2021
1 parent ccdefa3 commit ffcf9ba
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
25 changes: 25 additions & 0 deletions docs/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"include": [
"./src/**/*"
],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"boot/*": [
"src/boot/*"
],
"components/*": [
"src/components/*"
],
"examples/*": [
"src/examples/*"
],
"layouts/*": [
"src/layouts/*"
],
"pages/*": [
"src/pages/*"
]
}
}
}
13 changes: 13 additions & 0 deletions vetur.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// vetur.config.js
/** @type {import('vls').VeturConfig} */
module.exports = {
settings: {
"vetur.useWorkspaceDependencies": true,
"vetur.experimental.templateInterpolationService": true
},

projects: [
'./docs',
'./ui'
]
}

0 comments on commit ffcf9ba

Please sign in to comment.