Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 18:00:18 +08:00
commit 765529cd13
69 changed files with 18291 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{
"include": ["src"],
"exclude": [
"**/node_modules",
"**/__pycache__",
".venv",
"build",
"dist"
],
"venvPath": ".",
"venv": ".venv",
"typeCheckingMode": "strict",
"reportMissingTypeStubs": true,
"reportUnknownMemberType": true,
"reportUnknownArgumentType": true,
"reportUnknownVariableType": true,
"reportPrivateUsage": true,
"reportUnusedImport": true,
"reportUnusedVariable": true
}