27 lines
575 B
JSON
27 lines
575 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "build:compiler",
|
|
"detail": "Bundle @wrnexus/compiler to src/compiler.cjs (powers diagnostics).",
|
|
"type": "shell",
|
|
"command": "bun",
|
|
"args": [
|
|
"build",
|
|
"../../packages/compiler/src/index.ts",
|
|
"--target=node",
|
|
"--format=cjs",
|
|
"--outfile=src/compiler.cjs"
|
|
],
|
|
"options": {
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
"problemMatcher": [],
|
|
"presentation": {
|
|
"reveal": "silent",
|
|
"panel": "shared"
|
|
}
|
|
}
|
|
]
|
|
}
|