This commit is contained in:
2026-01-16 03:58:39 +00:00
parent 6e464cb7e7
commit 3dc1881d8b
6 changed files with 8815 additions and 1 deletions

13
tsconfig.json Normal file
View File

@@ -0,0 +1,13 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"outDir": "./dist_ts",
"declaration": true
},
"include": ["ts/**/*", "test/**/*"]
}