Files
js-dev-onboarding-24-play/tsconfig.json
T
24Play-Mykyta-Slobodianiuk 78d85c3799 feat:
-Add UI (Health bars, Resources UI, HUD Interface, Weapon U, Zoombie Invasion progress Indicator)

-Refactor code structure for improved readability and maintainability
2026-06-08 18:33:28 +03:00

21 lines
509 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"module": "ESNext",
"moduleResolution": "Node",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"noEmit": false,
"removeComments": true,
"noUnusedLocals": false,
"noUnusedParameters": true,
"noImplicitAny": false,
"allowJs": true,
"types": ["vite/client"]
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "templateLibs", "build", "zip"]
}