chore: add TypeScript config and project icon

- Add tsconfig.json with ES2020 target, CommonJS modules, and strict mode
- Add project icon image for application branding
This commit is contained in:
2026-04-15 13:41:44 -04:00
parent a1a80c719c
commit 50e9eb5484
2 changed files with 15 additions and 0 deletions
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

+15
View File
@@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"lib": ["ES2020"],
"outDir": "dist",
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"resolveJsonModule": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}