templatise-0.1.5.0: .vscode/launch.json
{
// 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": "ghc",
// "request": "launch",
// "name": "haskell(stack)",
// "internalConsoleOptions": "openOnSessionStart",
// "workspace": "${workspaceFolder}",
// "startup": "${workspaceFolder}/test/Spec.hs",
// "startupFunc": "",
// "startupArgs": "",
// "stopOnEntry": false,
// "mainArgs": "",
// "ghciPrompt": "H>>= ",
// "ghciInitialPrompt": "> ",
// "ghciCmd": "stack ghci --with-ghc=ghci-dap --test --no-load --no-build --main-is TARGET",
// "ghciEnv": {},
// "logFile": "${workspaceFolder}/.vscode/phoityne.log",
// "logLevel": "WARNING",
// "forceInspect": false
//},
{
"type": "ghc",
"request": "launch",
"name": "haskell(cabal)",
"internalConsoleOptions": "openOnSessionStart",
"workspace": "${workspaceFolder}",
"startup": "${workspaceFolder}/test/initialise/Main.hs",
"startupFunc": "",
"startupArgs": "",
"stopOnEntry": false,
"mainArgs": "",
"ghciPrompt": "H>>= ",
"ghciInitialPrompt": "> ",
"ghciCmd": "cabal repl --with-compiler ghci-dap --repl-no-load --builddir=${workspaceFolder}/.vscode/dist-cabal-repl initialise-test",
"ghciEnv": {},
"logFile": "${workspaceFolder}/.vscode/initialise-test.log",
"logLevel": "DEBUG",
"forceInspect": false
}
]
}