Skip to content

Instantly share code, notes, and snippets.

@alfonsogarciacaro
Created August 4, 2016 00:03
Show Gist options
  • Save alfonsogarciacaro/17b94bb217af6d1a62286b5e91975595 to your computer and use it in GitHub Desktop.
Save alfonsogarciacaro/17b94bb217af6d1a62286b5e91975595 to your computer and use it in GitHub Desktop.
Configuration for test project compilation with Fable in VS Code
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Mono",
"type": "mono",
"request": "launch",
"program": "${workspaceRoot}/build/fable/bin/Fable.Client.Node.exe",
"args": [
"--projFile", "src/tests/Fable.Tests.fsproj",
"--symbols", "MOCHA", "--copyExt", "true",
"--refs","Fable.Tests.Clamp=./Another Project",
"--refs","Fable.Tests.DllRef=./DllRef",
"--plugins","src/plugins/nunit/Fable.Plugins.NUnit.dll"
],
"cwd": "${workspaceRoot}",
"preLaunchTask": "",
"runtimeExecutable": null,
"env": {},
"externalConsole": false
},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment