initial commit

This commit is contained in:
Ken Yasue
2025-03-25 06:19:44 +01:00
parent b97fa96c25
commit 9aef2ad891
71 changed files with 13016 additions and 1 deletions

11
tsconfig.scripts.json Normal file
View File

@ -0,0 +1,11 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
// If you want to compile to CommonJS and keep it simple:
"module": "CommonJS",
// or if you prefer ESM, do "module": "ESNext" or "module": "NodeNext",
// but often CommonJS is simpler for scripts.
"outDir": "dist-scripts",
"noEmit": true
}
}