mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-14 20:34:30 +01:00
5d5280012e
* Include server-main.js in main TS project Fixes #167055 This fixes a conflict in the `@types/node` types in this file * Fixing a few more type errors * Fix typing of `onLoad`
37 lines
649 B
JSON
37 lines
649 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"removeComments": false,
|
|
"preserveConstEnums": true,
|
|
"sourceMap": false,
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"outDir": "../out/vs",
|
|
"target": "es2021",
|
|
"types": [
|
|
"keytar",
|
|
"mocha",
|
|
"semver",
|
|
"sinon",
|
|
"winreg",
|
|
"trusted-types",
|
|
"wicg-file-system-access"
|
|
],
|
|
"plugins": [
|
|
{
|
|
"name": "tsec",
|
|
"exemptionConfig": "./tsec.exemptions.json"
|
|
}
|
|
]
|
|
},
|
|
"include": [
|
|
"./bootstrap.js",
|
|
"./bootstrap-amd.js",
|
|
"./server-main.js",
|
|
"./typings",
|
|
"./vs/**/*.ts",
|
|
"vscode-dts/vscode.proposed.*.d.ts",
|
|
"vscode-dts/vscode.d.ts"
|
|
]
|
|
}
|