First Commit

This commit is contained in:
2025-12-01 20:07:25 +09:00
commit 5ee207c79f
9 changed files with 340 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
{
"compilerOptions": {
"target": "ES2024",
"module": "ESNext",
"moduleResolution": "bundler",
"outDir": "./dist",
"declaration": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"baseUrl": "./",
"types": [
"node"
],
"typeRoots": [
"./node_modules/@types",
],
"removeComments": true,
},
}