Open
Description
Anytime I run the extension, I get this un-informative error "Unsupported file format". This is my launch.json file:
{
// 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": [
{
"name": "Ocamlearlybird",
"type": "ocamlearlybird",
"request": "launch",
"program": "${workspaceRoot}/_build/default/src/main/main.exe",
"console": "integratedTerminal",
"cwd": "${workspaceRoot}",
"arguments": ["${workspaceRoot}/src/tests/test_code/parser.mly"],
"dotMerlins": [
"${workspaceRoot}/.merlin"
],
"noDebug": false,
"stopOnEntry": false
}
]
}
Activity