Skip to content

Commit

Permalink
Add workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
dyakovri committed Apr 8, 2024
1 parent aa652fe commit b3eb2bd
Showing 1 changed file with 75 additions and 0 deletions.
75 changes: 75 additions & 0 deletions frontend.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
{
"folders": [
{
"path": "frontend"
}
],
"extensions": {
"recommendations": [
"Vue.volar",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"formulahendry.auto-close-tag",
"formulahendry.auto-rename-tag",
"steoates.autoimport",
"vunguyentuan.vscode-css-variables",
"mohd-akram.vscode-html-format",
],
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "Configure",
"type": "shell",
"command": "pnpm install",
},
{
"label": "Run local",
"type": "shell",
"command": "npm run dev",
},
{
"label": "Build",
"type": "shell",
"command": "npm run build",
"group": {
"kind": "build",
"isDefault": true,
},
},
{
"label": "Test",
"type": "shell",
"command": "npm run test",
"group": {
"kind": "test",
"isDefault": true,
},
},
],
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Launch dev",
"request": "launch",
"runtimeArgs": ["dev"],
"runtimeExecutable": "pnpm",
"skipFiles": ["<node_internals>/**"],
"type": "node",
"serverReadyAction": {
"pattern": "Local: http://localhost:([0-9]+)/",
"uriFormat": "http://localhost:%s",
"action": "openExternally",
},
},
],
},
"settings": {
"typescript.tsdk": "node_modules/typescript/lib",
"css.validate": false,
"git.openRepositoryInParentFolders": "always",
},
}

0 comments on commit b3eb2bd

Please sign in to comment.