mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-20 12:40:19 -05:00
40 lines
907 B
JSON
40 lines
907 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"jsx": "react",
|
|
"jsxFactory": "vscpp",
|
|
"jsxFragmentFactory": "vscppf",
|
|
"rootDir": ".",
|
|
"types": [
|
|
"minimist",
|
|
"mocha",
|
|
"node",
|
|
"picomatch",
|
|
"sinon",
|
|
"tar"
|
|
],
|
|
// Needed for tsx to run test files
|
|
"paths": {
|
|
"vscode": [
|
|
"./src/util/common/test/shims/vscodeTypesShim.ts"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"./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"
|
|
]
|
|
}
|