1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-23 08:38:00 +08:00
This commit is contained in:
SevCrane
2024-06-05 23:20:28 +08:00
commit 5e482958f6
7329 changed files with 240086 additions and 0 deletions

23
webapp/vetur.config.js Normal file
View File

@@ -0,0 +1,23 @@
/** @type {import('vls').VeturConfig} */
module.exports = {
settings: {
'vetur.useWorkspaceDependencies': true,
'vetur.experimental.templateInterpolationService': true,
},
projects: [
{
root: './packages/renderer',
tsconfig: './tsconfig.json',
snippetFolder: './.vscode/vetur/snippets',
globalComponents: ['./src/components/**/*.vue'],
},
{
root: './packages/main',
tsconfig: './tsconfig.json',
},
{
root: './packages/preload',
tsconfig: './tsconfig.json',
},
],
};