mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-15 07:28:05 +00:00
* 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
23 lines
890 B
JSON
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
|
|
]
|
|
}
|