view vetur.config.js @ 5472:9321d9fb719f

improve README.md about licensing * Use meanwhile established `SPDX-FileCopyrightText:` line to give the holder of the usage rights, improve the explanation. * Use `SPDX-License-Identifier:` also here.
author Bernhard Reiter <bernhard@intevation.de>
date Tue, 20 Jul 2021 11:50:17 +0200
parents dcb22351e058
children
line wrap: on
line source

// vetur.config.js
/** @type {import('vls').VeturConfig} */
module.exports = {
  // **optional** default: `{}`
  // override vscode settings
  // Notice: It only affects the settings used by Vetur.
  settings: {
    "vetur.useWorkspaceDependencies": true,
    "vetur.experimental.templateInterpolationService": true,
  },
  // **optional** default: `[{ root: './' }]`
  // support monorepos
  projects: [
    "./client", // Shorthand for specifying only the project root location
  ],
};