tsconfig.base.json 769 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "compilerOptions": {
  3. "allowJs": true,
  4. "skipLibCheck": true,
  5. /* Strict Type-Checking Options */
  6. "strict": true,
  7. "strictNullChecks": true,
  8. "strictFunctionTypes": true,
  9. "strictBindCallApply": true,
  10. "strictPropertyInitialization": true,
  11. "noImplicitThis": true,
  12. "alwaysStrict": true,
  13. /* Additional Checks */
  14. // "noUnusedLocals": true,
  15. // "noUnusedParameters": true,
  16. "noImplicitReturns": true,
  17. "noFallthroughCasesInSwitch": true,
  18. "forceConsistentCasingInFileNames": true,
  19. "isolatedModules": true,
  20. /* Module Resolution Options */
  21. "moduleResolution": "node",
  22. "allowSyntheticDefaultImports": true,
  23. "esModuleInterop": true,
  24. /* Advanced Options */
  25. "resolveJsonModule": true
  26. }
  27. }