mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-24 09:48:51 +02:00
15 lines
323 B
JSON
15 lines
323 B
JSON
|
{
|
||
|
"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"
|
||
|
}
|