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 757B

12345678910111213141516171819202122232425262728
  1. {
  2. "compilerOptions": {
  3. "target": "es2015",
  4. "module": "commonjs",
  5. "lib": ["dom", "es2015"],
  6. "inlineSourceMap": false,
  7. "outDir": "./dist",
  8. "rootDir": "./src",
  9. "moduleResolution": "node",
  10. "skipLibCheck": true,
  11. "removeComments": true,
  12. "noImplicitAny": true,
  13. "strictNullChecks": true,
  14. "strictFunctionTypes": true,
  15. "noImplicitThis": true,
  16. "noUnusedLocals": true,
  17. "noUnusedParameters": true,
  18. "noImplicitReturns": true,
  19. "noFallthroughCasesInSwitch": true,
  20. "allowSyntheticDefaultImports": true,
  21. "esModuleInterop": true,
  22. "emitDecoratorMetadata": true,
  23. "experimentalDecorators": true,
  24. "resolveJsonModule": true
  25. },
  26. "exclude": ["node_modules"],
  27. "files": ["./src/main.ts"]
  28. }