/debug

Emits debugging information.

/debug[+ | -]

Arguments

  • +| -
    Specifying /debug+, or just /debug, causes the compiler to generate debugging information and place it in an output .pdb file(s). /debug- which is in effect by default if you do not specify /debug does not generate any debug information or create an output file(s) to contain debug information.

Remarks

For information on how to configure the debug performance of an application, see Making an Image Easier to Debug.

Example

Place debugging information for app.exe in the app.pdb file.

jsc /debug /out:app.pdb test.js

See Also

Other Resources

JScript Compiler Options