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
Example
Place debugging information for app.exe in the app.pdb file.
В | Copy Code |
---|---|
jsc /debug /out:app.pdb test.js |