(f: fs.WriteStream)
| 59 | } |
| 60 | |
| 61 | function writeHeader(f: fs.WriteStream) { |
| 62 | f.write('There are many `User/Workspace Settings` to control things globally. You can find these in the VSCode Settings UI. `launch.json`'); |
| 63 | f.write(' can override some of those settings. There is a lot of functionality that is available via `Settings` and some may be useful in a'); |
| 64 | f.write(' team environment and/or can be used across all cortex-debug sessions\n\n'); |
| 65 | f.write('\n\n'); |
| 66 | f.write('The following attributes (properties) can be used in your `launch.json` to control various aspects of debugging.'); |
| 67 | f.write(' Also `IntelliSense` is an invaluable aid while editing `launch.json`. With `IntelliSense`, you can hover over an attribute to get'); |
| 68 | f.write(' more information and/or help you find attributes (just start typing a double-quote, use Tab key) and provide defaults/options.\n\n'); |
| 69 | f.write('If the type is marked as `{...}` it means that it is a complex item can have multiple types. Possibly consult our Wiki\n'); |
| 70 | } |
| 71 | |
| 72 | export function packageJSONtoMd(path: string, outPath: string) { |
| 73 | let obj: any; |
no test coverage detected