Files
zemit/tsconfig.json
T
hykocx 50e9eb5484 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
2026-04-15 13:41:44 -04:00

16 lines
319 B
JSON

{
"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"]
}