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

12345678910111213141516
  1. {
  2. "compilerOptions": {
  3. "baseUrl": ".",
  4. "declaration": true,
  5. "esModuleInterop": true,
  6. "lib": [ "esnext" ],
  7. "module": "commonjs",
  8. "outDir": "build",
  9. "resolveJsonModule": true,
  10. "strict": true,
  11. "target": "es2019"
  12. },
  13. "include": [
  14. "./**/*.ts"
  15. ]
  16. }