diff options
author | 2021-06-30 02:38:28 -0700 | |
---|---|---|
committer | 2021-06-30 02:38:28 -0700 | |
commit | a8536a73373794dc9748a97f0e4668d6bf708ca1 (patch) | |
tree | f171ccc60cebda8d76e13d5a146624e27441eb96 | |
parent | cb2ee39bfa27c1a1c223bbb0c135a03a9d3a4d85 (diff) | |
download | bun-a8536a73373794dc9748a97f0e4668d6bf708ca1.tar.gz bun-a8536a73373794dc9748a97f0e4668d6bf708ca1.tar.zst bun-a8536a73373794dc9748a97f0e4668d6bf708ca1.zip |
asdasdasdjarred/jsc
-rw-r--r-- | .vscode/launch.json | 28 |
1 files changed, 21 insertions, 7 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 23d246ea8..2c411eaed 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -14,18 +14,31 @@ { "type": "lldb", "request": "launch", - "name": "Eval", + "name": "Eval Small TEst", "program": "${workspaceFolder}/build/debug/macos-x86_64/spjs", "args": [ - "./console.log.js", + "./quoted-escape.js", "--resolve=dev", - // "--jsb=../../../demos/css-stress-test/node_modules.jsb", - "--outdir=outcss", - "--public-url=https://localhost:9000/" + "--outdir=outcss" + // "--public-url=https://localhost:9000/" ], "cwd": "${workspaceFolder}/src/test/fixtures", "console": "internalConsole" }, + { + "type": "lldb", + "request": "launch", + "name": "Eval", + "program": "${workspaceFolder}/build/debug/macos-x86_64/spjs", + "args": [ + "src/index.tsx", + "--resolve=dev", + "--outdir=outcss" + // "--public-url=https://localhost:9000/" + ], + "cwd": "${workspaceFolder}/demos/css-stress-test", + "console": "internalConsole" + }, { "type": "lldb", @@ -79,10 +92,11 @@ "args": [ "./src/index.tsx", "--resolve=dev", - "--outdir=out", + "--outdir=outcss", + "--platform=browser", "--public-url=http://localhost:9000/" ], - "cwd": "${workspaceFolder}/demos/simple-react", + "cwd": "${workspaceFolder}/demos/css-stress-test", "console": "internalConsole" }, |