core/resolvers/pyrightconfig.json

20 lines
529 B
JSON
Raw Normal View History

2025-02-18 21:21:51 +00:00
{
2025-05-16 07:30:02 +00:00
"include": ["."],
"exclude": ["**/node_modules", "**/__pycache__", "**/.*", "**/dist"],
"defineConstant": {
"DEBUG": true
},
"venvPath": ".",
"venv": ".venv",
"pythonVersion": "3.11",
"typeCheckingMode": "strict",
"reportMissingImports": true,
"reportMissingTypeStubs": false,
"reportUnknownMemberType": false,
"reportUnknownParameterType": false,
"reportUnknownVariableType": false,
"reportUnknownArgumentType": false,
"reportPrivateUsage": false,
"reportUntypedFunctionDecorator": false
}