I'm interested in using vibe.d's json module in my project.

When I add vibe.d as a dependency in my project's package.json,
it obviously builds the entirety of vibe.d and it uses its own main.

I believe using "versions": ["VibeCustomMain"] should let me use it as I want.

I however get the following error:

Checking dependencies in 'C:\Test'
Copying files...
Building configuration "application", build type debug
Compiling...
Compiling..
Linking...
OPTLINK (R) for Win32  Release 8.00.13
Copyright (C) Digital Mars 1989-2010  All rights reserved.
http://www.digitalmars.com/ctg/optlink.html
.dub\build\application-debug-x86-dmd-DA39A3EE5E6B4B0D3255BFEF95601890AFD80709\main.exe.obj(main.exe)
 Error 45: Too Much DEBUG Data for Old CodeView format
--- errorlevel 1
Error executing command run: Link command failed with exit code 1

What am I doing wrong? And is this the best method to get just the json module?