First Commit

This commit is contained in:
2026-01-19 19:51:25 +09:00
commit 5a16b0dbbb
28 changed files with 1321 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
{
"compilerOptions": {
"target": "ES2024",
"module": "ESNext",
"moduleResolution": "bundler",
"outDir": "./dist",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"declarationDir": "./dist/types",
"strict": true,
"skipLibCheck": true,
"baseUrl": "./src/",
"typeRoots": [
"./node_modules/@types",
],
"paths": {
"@/*": ["./*"],
"1.6.11/*": ["./1.6.11/*"],
},
},
"tsc-alias": {
"resolveFullPaths": true,
},
}