Ohm-Management - Projektarbeit B-ME
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 505B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. "module": "es2015",
  4. "target": "esnext",
  5. "noImplicitAny": true,
  6. "sourceMap": true,
  7. "alwaysStrict": true,
  8. "declaration": true,
  9. "experimentalDecorators": true,
  10. "forceConsistentCasingInFileNames": true,
  11. "importHelpers": true,
  12. "noImplicitReturns": true,
  13. "noImplicitThis": true,
  14. "outDir": "dist/esnext",
  15. "strictNullChecks": true
  16. },
  17. "include": [
  18. "src/**/*"
  19. ]
  20. }