25 lines
587 B
JSON
25 lines
587 B
JSON
{
|
|
"include": [
|
|
"."
|
|
],
|
|
"exclude": [
|
|
"**/node_modules",
|
|
"**/__pycache__",
|
|
"**/.*"
|
|
],
|
|
"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
|
|
} |