COGNHACKER - LAB
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

35 строки
798 B

  1. {
  2. "compilerOptions": {
  3. "outDir": "./dist/",
  4. "target": "ESNext",
  5. "useDefineForClassFields": true,
  6. "module": "ESNext",
  7. "lib": [
  8. "ESNext",
  9. "DOM"
  10. ],
  11. "allowJs": true,
  12. "moduleResolution": "Node",
  13. "strict": true,
  14. "noImplicitAny": true,
  15. "strictNullChecks": true,
  16. "strictFunctionTypes": true,
  17. "strictBindCallApply": true,
  18. "strictPropertyInitialization": true,
  19. "noImplicitThis": true,
  20. "alwaysStrict": true,
  21. "noFallthroughCasesInSwitch": true,
  22. "sourceMap": true,
  23. "resolveJsonModule": true,
  24. "isolatedModules": true,
  25. "esModuleInterop": true,
  26. "noEmit": true,
  27. "noUnusedLocals": true,
  28. "noUnusedParameters": true,
  29. "noImplicitReturns": true,
  30. "skipLibCheck": true
  31. },
  32. "include": [
  33. "src"
  34. ]
  35. }