This commit is contained in:
2025-04-17 10:20:46 -04:00
commit c6f10f9a32
9 changed files with 1402 additions and 0 deletions

20
tsconfig.json Normal file
View File

@@ -0,0 +1,20 @@
{
"include": [
"src"
],
"compilerOptions": {
"baseUrl": ".",
"esModuleInterop": true,
"experimentalDecorators": true,
"inlineSourceMap": true,
"inlineSources": true,
"lib": ["dom", "ESNext", "DOM.Iterable"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "dist",
"resolveJsonModule": true,
"rootDir": "src",
"skipLibCheck": true,
"target": "ESNext"
}
}