mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-09 16:24:45 +01:00
e03641355c
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
39 lines
817 B
JSON
39 lines
817 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/**",
|
|
"test/aml/out"
|
|
]
|
|
}
|