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.

.babelrc.json 262B

1234567891011121314151617181920
  1. {
  2. "plugins": [
  3. "@babel/plugin-syntax-class-properties"
  4. ],
  5. "presets": [
  6. [
  7. "@babel/preset-env",
  8. {
  9. "targets": {
  10. "node": 10
  11. }
  12. }
  13. ]
  14. ],
  15. "env": {
  16. "test": {
  17. "plugins": [ "istanbul" ]
  18. }
  19. }
  20. }