mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-25 20:57:12 +00:00
Seeing if we can compile our extensions using TS native which doesn't support these. The usage is so low that I think we can just remove them
19 lines
362 B
JSON
19 lines
362 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "./out",
|
|
"typeRoots": [
|
|
"./node_modules/@types"
|
|
],
|
|
"lib": [
|
|
"WebWorker"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"../../src/vscode-dts/vscode.d.ts",
|
|
"../../src/vscode-dts/vscode.proposed.authIssuers.d.ts",
|
|
"../../src/vscode-dts/vscode.proposed.authProviderSpecific.d.ts"
|
|
]
|
|
}
|