Initial commit

This commit is contained in:
Lucid Kobold
2025-02-19 10:12:42 -05:00
committed by GitHub
commit 15dd54cebd
37 changed files with 8132 additions and 0 deletions

23
tsconfig.json Normal file
View File

@@ -0,0 +1,23 @@
{
"compilerOptions": {
"target": "ES2022",
"rootDir": ".",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"paths": {
"#root/*": [
"./src/*"
]
},
"strict": true,
"noEmit": true,
"outDir": "build",
"sourceMap": true,
"esModuleInterop": true,
"skipLibCheck": true,
"preserveWatchOutput": true
},
"include": [
"src/**/*"
]
}