pojokcodeid.nvim-lazy/snippets/laravel-blade/.vscode/tasks.json

15 lines
309 B
JSON
Raw Normal View History

2023-03-03 07:09:50 +07:00
{
"version": "2.0.0",
"type": "shell",
"command": "npm",
// run the custom script "compile" as defined in package.json
"args": [
"run",
"compile",
"--loglevel",
"silent"
],
"isBackground": true,
// The tsc compiler is started in watching mode
"problemMatcher": "$tsc-watch"
2023-01-15 00:19:37 +07:00
}