Initial commit of template

This commit is contained in:
Antigravity
2026-07-16 14:04:00 +05:30
commit 74292814a5
22 changed files with 1843 additions and 0 deletions

18
tsconfig.json Normal file
View File

@@ -0,0 +1,18 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"types": [
"node"
],
"outDir": "dist"
},
"include": [
"src/**/*.ts"
]
}