Updated Source Code Organization (markdown)

Benjamin Pasero 2020-11-25 13:34:47 +01:00
parent abe8050312
commit 1f6491a3fc

@ -17,6 +17,8 @@ The `core` of VS Code is fully implemented in [TypeScript](https://github.com/mi
- may use code from: `common`
- `node`: Source code that requires [`nodejs`](https://nodejs.org) APIs
- may use code from: `common`
- `electron-sandbox`: Source code that requires the `browser` APIs like access to the DOM and a small subset of APIs to communicate with the Electron main process (anything exposed from `src/vs/base/parts/sandbox/electron-sandbox/globals.ts`
- may use code from: `common`, `browser`, `electron-sandbox`
- `electron-browser`: Source code that requires the [Electron renderer-process](https://github.com/atom/electron/tree/master/docs#modules-for-the-renderer-process-web-page) APIs
- may use code from: `common`, `browser`, `node`
- `electron-main`: Source code that requires the [Electron main-process](https://github.com/atom/electron/tree/master/docs#modules-for-the-main-process) APIs