This commit is contained in:
xiongxiao
2026-03-21 20:32:27 +08:00
committed by cnb
commit b00b4a69a7
19 changed files with 560 additions and 0 deletions

23
tsconfig.json Normal file
View File

@@ -0,0 +1,23 @@
{
"extends": "@kevisual/types/json/frontend.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": [
"./src/*"
],
"@/agent": [
"./src/agent"
]
},
},
"include": [
"src/**/*",
"agent/**/*",
".astro/types.d.ts",
"**/*"
],
"exclude": [
"dist"
]
}