Initial commit

This commit is contained in:
Maki
2026-01-04 18:00:24 +08:00
commit a081f51cc6
42 changed files with 2962 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{
"compilerOptions": {
"target": "esnext",
"module": "NodeNext",
"sourceMap": true,
"experimentalDecorators": true,
"rootDir": "./",
"outDir": "output",
"strict": true,
"moduleResolution":"nodenext",
"noImplicitAny": true,
"esModuleInterop": true,
"noImplicitThis": false,
"resolveJsonModule":true,
"strictNullChecks":false,
"noImplicitReturns":false,
"skipLibCheck": true
},
"exclude": ["node_modules"]
}