mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-15 07:28:05 +00:00
39 lines
720 B
JSON
39 lines
720 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"removeComments": false,
|
|
"preserveConstEnums": true,
|
|
"sourceMap": false,
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": false,
|
|
"outDir": "../out/vs",
|
|
"types": [
|
|
"@webgpu/types",
|
|
"mocha",
|
|
"semver",
|
|
"sinon",
|
|
"trusted-types",
|
|
"winreg",
|
|
"wicg-file-system-access"
|
|
],
|
|
"plugins": [
|
|
{
|
|
"name": "tsec",
|
|
"exemptionConfig": "./tsec.exemptions.json"
|
|
}
|
|
]
|
|
},
|
|
"include": [
|
|
"./*.ts",
|
|
"./typings",
|
|
"./vs/**/*.ts",
|
|
"./vscode-dts/vscode.proposed.*.d.ts",
|
|
"./vscode-dts/vscode.d.ts"
|
|
],
|
|
"exclude": [
|
|
"vs/workbench/contrib/webview/browser/pre/service-worker.js"
|
|
]
|
|
}
|