PASSAGGIO A VITE !

AGG. 1.1.23
This commit is contained in:
Surya Paolo
2025-03-01 14:14:43 +01:00
parent f0098e57b2
commit bc960d38a1
1044 changed files with 5323 additions and 10823777 deletions

9
.vscode/extensions.json vendored Executable file → Normal file
View File

@@ -1,12 +1,15 @@
{
"recommendations": [
"dbaeumer.vscode-eslint",
"octref.vetur"
"esbenp.prettier-vscode",
"editorconfig.editorconfig",
"vue.volar",
"wayou.vscode-todo-highlight"
],
"unwantedRecommendations": [
"octref.vetur",
"hookyqr.beautify",
"dbaeumer.jshint",
"ms-vscode.vscode-typescript-tslint-plugin"
]
}
}

44
.vscode/launch.json vendored
View File

@@ -4,6 +4,26 @@
// Per altre informazioni, visitare: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"command": "npm run dev_noCheck",
"name": "DEV (no-check-TS)",
"request": "launch",
"type": "node-terminal",
"sourceMaps": false,
},
{
"command": "npm run dev",
"name": "DEV",
"request": "launch",
"type": "node-terminal"
},
{
"command": "npm run spa",
"name": "SPA",
"request": "launch",
"type": "node-terminal",
"sourceMaps": false,
},
{
"command": "npm run pwa",
"name": "PWA",
@@ -13,30 +33,10 @@
"NODE_ENV": "development"
}
},
{
"command": "npm run spa",
"name": "SPA",
"request": "launch",
"type": "node-terminal",
"sourceMaps": false,
},
{
"command": "npm run spa",
"name": "SPA DEBUG",
"request": "launch",
"type": "node-terminal",
"sourceMaps": true,
},
{
"command": "npm run dev",
"name": "DEV",
"request": "launch",
"type": "node-terminal"
},
{
"type": "chrome",
"request": "launch",
"name": "vuejs: Launch Chrome DEBUG",
"name": "vuejs: Launch Chrome VITE_DEBUG",
"url": "http://localhost:8088",
"breakOnLoad": true,
"webRoot": "${workspaceFolder}/src",
@@ -45,4 +45,4 @@
}
}
]
}
}

22
.vscode/settings.json vendored Executable file → Normal file
View File

@@ -1,22 +1,14 @@
{
"vetur.validation.template": false,
"vetur.format.enable": false,
"volar.nodePath": "/Users/suryapaolo/.nvm/versions/node/v18.18.0/bin/node",
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": true,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": [],
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"vue"
],
"typescript.tsdk": "node_modules/typescript/lib",
"vetur.experimental.templateInterpolationService": true,
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/images/**": true,
"**/node_modules/**": true,
"**/public": true,
"**/public/**": true,
"**/public/upload/**": true
},
}
"typescript.tsdk": "node_modules/typescript/lib"
}

23
.vscode/tasks.json vendored
View File

@@ -1,23 +0,0 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "serve",
"type": "npm",
"script": "serve",
"isBackground": true,
"problemMatcher": [{
"base": "$tsc-watch",
"background": {
"activeOnStart": true,
"beginsPattern": "Starting development server",
"endsPattern": "Compiled successfully"
}
}],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}