repository to manage all files related to the makeathon farm bot project (Software + Documentation).
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tsconfig.json 863B

1234567891011121314151617181920212223242526272829303132
  1. /* To learn more about this file see: https://angular.io/config/tsconfig. */
  2. {
  3. "compileOnSave": false,
  4. "compilerOptions": {
  5. "baseUrl": "./",
  6. "outDir": "./dist/out-tsc",
  7. "forceConsistentCasingInFileNames": true,
  8. "strict": false,
  9. "noImplicitOverride": true,
  10. "noPropertyAccessFromIndexSignature": true,
  11. "noImplicitReturns": true,
  12. "noFallthroughCasesInSwitch": true,
  13. "sourceMap": true,
  14. "declaration": false,
  15. "downlevelIteration": true,
  16. "experimentalDecorators": true,
  17. "moduleResolution": "node",
  18. "importHelpers": true,
  19. "target": "es2020",
  20. "module": "es2020",
  21. "lib": [
  22. "es2020",
  23. "dom"
  24. ]
  25. },
  26. "angularCompilerOptions": {
  27. "enableI18nLegacyMessageIdFormat": false,
  28. "strictInjectionParameters": true,
  29. "strictInputAccessModifiers": true,
  30. "strictTemplates": true
  31. }
  32. }