-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyrightconfig.json
More file actions
40 lines (40 loc) · 1014 Bytes
/
pyrightconfig.json
File metadata and controls
40 lines (40 loc) · 1014 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"include": [
"packages/**/src/**/*.py",
"examples/**/src/**/*.py"
],
"venv": ".venv",
"venvPath": ".",
"stubPath": "stubs",
"extraPaths": [
"packages/api/src",
"packages/common/src",
"packages/cards/src",
"packages/apps/src",
"packages/graph/src",
"packages/devtools/src",
"packages/ai/src",
"packages/openai/src",
"packages/mcpplugin/src",
"packages/a2aprotocol/src",
"packages/botbuilder/src"
],
"typeCheckingMode": "strict",
"executionEnvironments": [
{
"root": "packages/api/src",
"reportIncompatibleVariableOverride": "none",
"reportIncompatibleMethodOverride": "none"
},
{
"root": "packages/botbuilder/src",
"reportMissingTypeStubs": "none",
"reportUnknownMemberType": "none"
},
{
"root": "examples/botbuilder/src",
"reportMissingTypeStubs": "none",
"reportUnknownMemberType": "none"
}
]
}