first commit

This commit is contained in:
2026-07-12 15:55:18 +05:30
commit ee98026cc5
404 changed files with 44522 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{
"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"
}
}
]
}