You can use standard IDEs and tools to edit code in Bit workspace. Below is a list of popular editors you can find in the wild.
Base Templates comes built in with an example launch.json
for VSCode Debugging Configuration.
{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "type": "node", "request": "launch", "name": "test", "program": "${workspaceFolder}/node_modules/@teambit/bit/dist/app.js", "args": ["test"], "resolveSourceMapLocations": ["${workspaceFolder}/node_modules/@my-org/**/*.js"], "outFiles": ["${workspaceFolder}/node_modules/@my-org/**/*.js"], "console": "integratedTerminal", "sourceMaps": true, "internalConsoleOptions": "neverOpen", "cwd": "${workspaceFolder}" } ] }