first commit

This commit is contained in:
HPL-JesusCastro
2026-05-07 20:53:31 +08:00
commit def3dfb60d
17 changed files with 1413 additions and 0 deletions

13
tsconfig.json Normal file
View File

@@ -0,0 +1,13 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "ES2020",
"outDir": "out",
"lib": ["ES2020", "DOM"],
"sourceMap": true,
"rootDir": "src",
"strict": true,
"esModuleInterop": true
},
"exclude": ["node_modules", ".vscode-test"]
}