mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-27 13:40:25 +00:00
This allows the GitHub Auth provider to take in a account per this proposal:
417dddb83f/src/vscode-dts/vscode.proposed.authGetSessions.d.ts (L35-L69)
Additionally, this makes an additional small change that allows `clearSessionPreference` to work in single-account auth providers.
19 lines
332 B
JSON
19 lines
332 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "./out",
|
|
"experimentalDecorators": true,
|
|
"typeRoots": [
|
|
"./node_modules/@types"
|
|
],
|
|
"lib": [
|
|
"WebWorker"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"../../src/vscode-dts/vscode.d.ts",
|
|
"../../src/vscode-dts/vscode.proposed.authGetSessions.d.ts"
|
|
]
|
|
}
|