This commit is contained in:
bumpsoo 2025-06-16 15:58:45 +09:00
commit fcaaa2d1f5
7 changed files with 3473 additions and 0 deletions

12
tsconfig.json Normal file
View file

@ -0,0 +1,12 @@
{
"compilerOptions": {
"target": "es2020",
"module": "commonjs",
"rootDir": "./src",
"outDir": "./dist",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
}
}