pyright/packages/vscode-pyright/tsconfig.json
PylanceBot ede08a0211
[PylanceBot] Pull Pylance with Pyright 1.1.377 (#8808)
* pull-pylance-with-pyright-1.1.377-10512633325

* remove duplicate line

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Bill Schnurr <bschnurr@microsoft.com>
2024-08-22 12:26:42 -07:00

23 lines
491 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./out",
"paths": {
"pyright-internal/*": [
"../pyright-internal/src/*"
]
},
"typeRoots": ["./node_modules/@types", "../pyright-internal/typings"]
},
"include": [
"src/**/*",
"**/*.js",
"../pyright-internal/typings/**/*.d.ts"
],
"exclude": [
"node_modules",
"dist",
"out"
]
}