This commit is contained in:
2026-06-06 09:10:58 +08:00
commit 698c90ccf5
65 changed files with 11058 additions and 0 deletions

17
tsconfig.json Normal file
View File

@@ -0,0 +1,17 @@
{
"extends": "@kevisual/types/json/frontend.json",
"compilerOptions": {
"jsx": "react-jsx",
"paths": {
"@/*": [
"./src/*"
],
"@/app.ts": [
"./agents/app.ts"
],
},
},
"include": [
"./src",
]
}