slopus--happy
98e40dac97
CLI Smoke Test / smoke-test-linux (20) (push) Has been cancelled
CLI Smoke Test / smoke-test-linux (24) (push) Has been cancelled
CLI Smoke Test / smoke-test-windows (20) (push) Has been cancelled
CLI Smoke Test / smoke-test-windows (24) (push) Has been cancelled
Expo App TypeScript typecheck / typecheck (push) Has been cancelled
50 行
1.1 KiB
JSON
50 行
1.1 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "CLI [does not work for interactive claude, needs fixing]",
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"runtimeExecutable": "npx",
|
|
"runtimeArgs": [
|
|
"tsx",
|
|
"${workspaceFolder}/src/index.ts"
|
|
],
|
|
"console": "integratedTerminal",
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Run Tests",
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"runtimeExecutable": "npx",
|
|
"runtimeArgs": [
|
|
"vitest",
|
|
"run"
|
|
],
|
|
"console": "integratedTerminal",
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Run tests in current file",
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"runtimeExecutable": "npx",
|
|
"runtimeArgs": [
|
|
"vitest",
|
|
"run",
|
|
"${file}"
|
|
],
|
|
"console": "integratedTerminal",
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
]
|
|
} |