mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-25 04:36:23 +00:00
Mostly plumbing... this enables:
```
vscode.authentication.getSession('microsoft', scopes, { issuer: "https://login.microsoftonline.com/common/v2.0" });
```
And the respective API for an auth providers to handle it being passed in.
This props up work in MCP land which needs a way to map an issuer to an auth provider... but I certainly see utility outside of that space.
Fixes https://github.com/microsoft/vscode/issues/248775#issuecomment-2876711396
30 lines
665 B
JSON
30 lines
665 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"experimentalDecorators": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": false,
|
|
"outDir": "dist",
|
|
"resolveJsonModule": true,
|
|
"rootDir": "src",
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"lib": [
|
|
"WebWorker"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
],
|
|
"include": [
|
|
"src/**/*",
|
|
"../../src/vscode-dts/vscode.d.ts",
|
|
"../../src/vscode-dts/vscode.proposed.idToken.d.ts",
|
|
"../../src/vscode-dts/vscode.proposed.nativeWindowHandle.d.ts",
|
|
"../../src/vscode-dts/vscode.proposed.authIssuers.d.ts"
|
|
]
|
|
}
|