Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

tsconfig.json 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "version": "1.5.0-alpha",
  3. "compilerOptions": {
  4. "target": "es6",
  5. "module": "commonjs",
  6. "declaration": false,
  7. "noImplicitAny": true,
  8. "removeComments": true,
  9. "noLib": false,
  10. "preserveConstEnums": true,
  11. "suppressImplicitAnyIndexErrors": true,
  12. "out": "./js/app.js"
  13. },
  14. "filesGlob": [
  15. "./**/*.ts",
  16. "!./node_modules/**/*.ts"
  17. ],
  18. "files": [
  19. "./src/app.ts",
  20. "./src/mock.ts",
  21. "./src/routes.ts",
  22. "./src/actions/actions.ts",
  23. "./src/dispatcher/dispatcher.ts",
  24. "./src/dispatcher/invariant.ts",
  25. "./src/external/react/react-addons.d.ts",
  26. "./src/external/react/react.d.ts",
  27. "./src/external/page/page.d.ts",
  28. "./src/stores/asyncT.ts",
  29. "./src/stores/card.ts",
  30. "./src/stores/dataset.ts",
  31. "./src/stores/deck.ts",
  32. "./src/stores/entity.ts",
  33. "./src/stores/eventEmitter.ts",
  34. "./src/stores/id.ts",
  35. "./src/stores/store.ts",
  36. "./src/stores/template.ts",
  37. "./src/stores/viewState.ts",
  38. "./src/views/components/deck.ts",
  39. "./src/views/view.ts",
  40. "./src/views/decks.ts",
  41. "./src/views/header.ts",
  42. "./src/views/ui.ts"
  43. ]
  44. }