feat: initial commit

This commit is contained in:
trafficlunar 2026-03-03 18:32:00 +00:00
commit 8c98c2624b
10 changed files with 4153 additions and 0 deletions

16
tsconfig.json Normal file
View file

@ -0,0 +1,16 @@
{
"compilerOptions": {
"target": "ES2017",
"jsx": "react",
"module": "commonjs",
"resolveJsonModule": true,
"outDir": "dist",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
},
"include": [
"./src/**/*.*"
]
}