mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-21 02:11:11 +00:00
* Initial plan * Remove web worker support from microsoft-authentication extension - Remove browser entry point from package.json - Remove browser webpack configuration - Remove browser-specific scripts (compile-web, watch-web) - Remove src/browser/ directory with browser-specific implementations - Remove ExtensionHost.WebWorker enum value - Remove supportsWebWorkerExtensionHost flags from all flows - Simplify authProvider.ts by removing web worker detection logic - Remove web worker test case from flows.test.ts - Successfully compiled with 0 errors Co-authored-by: TylerLeonhardt <2644648+TylerLeonhardt@users.noreply.github.com> * couple references --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
17 lines
441 B
JSON
17 lines
441 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "./out",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": false,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"../../src/vscode-dts/vscode.d.ts",
|
|
"../../src/vscode-dts/vscode.proposed.nativeWindowHandle.d.ts",
|
|
"../../src/vscode-dts/vscode.proposed.authIssuers.d.ts",
|
|
"../../src/vscode-dts/vscode.proposed.authenticationChallenges.d.ts"
|
|
]
|
|
}
|