Files
vscode/extensions/copilot/tsconfig.json
Dirk Bäumer a37e9a41ae Get the completion panel working (#1739)
* Get the completion panel working

* Address review comments

* Address XSS vulnerability by sanitizing HTML snippets before rendering in suggestions panel webview
2025-11-03 12:54:27 +00:00

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"
]
}