Initial commit

This commit is contained in:
2024-11-15 22:55:53 +01:00
commit 90bcf94f14
14 changed files with 1134 additions and 0 deletions

17
tsconfig.json Normal file
View File

@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "esnext",
"module": "ESNext",
"moduleResolution": "node",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"allowImportingTsExtensions": true,
"paths": {
"@/*": [
"./src/*"
]
}
}
}