Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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 465B

123456789101112131415161718192021
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "outDir": "dist",
  5. "target": "es2016",
  6. "declaration": true,
  7. "noImplicitAny": true,
  8. "inlineSourceMap": true,
  9. "noEmitOnError": false,
  10. "strictNullChecks": true,
  11. "noImplicitReturns": true,
  12. "noUnusedLocals": true,
  13. "noUnusedParameters": true
  14. },
  15. "exclude": [
  16. "node_modules"
  17. ],
  18. "include": [
  19. "src"
  20. ]
  21. }