first commit
This commit is contained in:
Vendored
+16
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Run WrNexus Extension",
|
||||
"type": "extensionHost",
|
||||
"request": "launch",
|
||||
"args": [
|
||||
"--extensionDevelopmentPath=${workspaceFolder}",
|
||||
"${workspaceFolder}/../../examples/basic-app"
|
||||
],
|
||||
"outFiles": ["${workspaceFolder}/src/**/*.js"],
|
||||
"preLaunchTask": "build:compiler"
|
||||
}
|
||||
]
|
||||
}
|
||||
Vendored
+26
@@ -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"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user