feat(insight): Refactor code structure for improved readability and maintainability

This commit is contained in:
DragonnZhang 2026-02-09 19:00:57 +08:00
parent 2edce464ae
commit e66c203cb0
18 changed files with 423 additions and 229 deletions

View file

@ -0,0 +1,15 @@
{
"compilerOptions": {
"strict": true,
"jsx": "react",
"target": "es2018",
"module": "esnext",
"moduleResolution": "bundler",
"lib": ["ES2021", "DOM", "DOM.Iterable"],
"isolatedModules": true,
"skipLibCheck": true,
"noEmit": true,
"resolveJsonModule": true
},
"include": ["src"]
}