Files
js-dev-onboarding-24-play/tsconfig.json
T
Mykyta Slobodianiuk 0003919f4c initial commit
2026-06-02 18:10:09 +03:00

21 lines
510 B
JSON

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