mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-25 20:24:04 +00:00
* Add support for TS's Hierarchical refactorings API https://github.com/microsoft/TypeScript/pull/41975 * Add simple browser extension This change adds a new 'simple browser' extension. This extension uses a webview to render webpages directly in VS Code. We plan on using it for optionally previewing local servers in both desktop and codespaces The browser itself has a number of limitations due to the security around iframes: - It traps keyboard focus - We can't detect if a page fails to load - We can't track the current url of the iframe * Add experimental alert when the iframe is focused * Disable events on focus warning * Hooking up simple browser to opener
13 lines
168 B
JSON
13 lines
168 B
JSON
{
|
|
"extends": "../../shared.tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"jsx": "react",
|
|
"lib": [
|
|
"es2018",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
]
|
|
}
|
|
}
|