Files
vscode/build/checker/tsconfig.electron-browser.json
Joaquín Ruales d3dbc037c0 Prepopulate the Find in Page search text with the currently selected text in the page (#291800)
* Prepopulate Find textbox

* Add warning taken from preload.ts

* Small changes

* Refactor preload script comments for clarity and security emphasis

* Small comment change

* Small comment change

* Update comment

* Use isolated world instead of main world

* Comment update

* Update comment

* Update comment

* PR Feedback

* Small comment
2026-02-03 22:48:14 -08:00

23 lines
890 B
JSON

{
"extends": "./tsconfig.browser.json",
"include": [
"../../src/**/common/**/*.ts",
"../../src/**/browser/**/*.ts",
"../../src/**/electron-browser/**/*.ts",
"../../src/typings/*.d.ts",
"../../src/vs/monaco.d.ts",
"../../src/vscode-dts/vscode.proposed.*.d.ts",
"../../src/vscode-dts/vscode.d.ts",
"../../node_modules/@webgpu/types/dist/index.d.ts",
"../../node_modules/@types/trusted-types/index.d.ts",
"../../node_modules/@types/wicg-file-system-access/index.d.ts"
],
"exclude": [
"../../src/**/test/**",
"../../src/**/fixtures/**",
"../../src/vs/base/parts/sandbox/electron-browser/preload.ts", // Preload scripts for Electron sandbox
"../../src/vs/base/parts/sandbox/electron-browser/preload-aux.ts", // have limited access to node.js APIs
"../../src/vs/platform/browserView/electron-browser/preload-browserView.ts" // Browser view preload script
]
}