comparison vetur.config.js @ 5317:dcb22351e058

Added configuration files for JS tooling For further information you may read https://vuejs.github.io/vetur/guide/setup.html#extensions
author Thomas Junk <thomas.junk@intevation.de>
date Fri, 18 Jun 2021 11:58:43 +0200
parents
children
comparison
equal deleted inserted replaced
5316:d188baf44ed0 5317:dcb22351e058
1 // vetur.config.js
2 /** @type {import('vls').VeturConfig} */
3 module.exports = {
4 // **optional** default: `{}`
5 // override vscode settings
6 // Notice: It only affects the settings used by Vetur.
7 settings: {
8 "vetur.useWorkspaceDependencies": true,
9 "vetur.experimental.templateInterpolationService": true,
10 },
11 // **optional** default: `[{ root: './' }]`
12 // support monorepos
13 projects: [
14 "./client", // Shorthand for specifying only the project root location
15 ],
16 };