mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-10 17:43:38 -05:00
* Get the completion panel working * Address review comments * Address XSS vulnerability by sanitizing HTML snippets before rendering in suggestions panel webview
40 lines
927 B
JSON
40 lines
927 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"jsx": "react",
|
|
"jsxFactory": "vscpp",
|
|
"jsxFragmentFactory": "vscppf",
|
|
"rootDir": ".",
|
|
"types": [
|
|
"minimist",
|
|
"mocha",
|
|
"node",
|
|
"picomatch",
|
|
"sinon",
|
|
"tar",
|
|
"vscode"
|
|
],
|
|
// Needed for tsx to run test files
|
|
"paths": {
|
|
"vscode": ["./src/util/common/test/shims/vscodeTypesShim.ts"]
|
|
}
|
|
},
|
|
"include": [
|
|
"vscodeTypes.ts",
|
|
"src",
|
|
"test",
|
|
".vscode/extensions/test-extension"
|
|
],
|
|
"exclude": [
|
|
"test/scenarios/**/*",
|
|
"test/simulation/fixtures/**/*",
|
|
"test/simulation/workbench/**/*",
|
|
"src/platform/parser/test/node/fixtures/**/*",
|
|
"src/extension/test/node/fixtures/**/*",
|
|
"src/extension/prompts/node/test/fixtures/**/*",
|
|
"src/extension/typescriptContext/serverPlugin/fixtures/**",
|
|
"src/extension/completions-core/vscode-node/extension/src/copilotPanel/webView/suggestionsPanelWebview.ts",
|
|
"test/aml/out"
|
|
]
|
|
}
|