Nessuna descrizione
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 1.0KB

12345678910111213141516171819202122232425262728293031323334353637
  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/actions/actions.ts",
  20. "./src/app.ts",
  21. "./src/dispatcher/dispatcher.ts",
  22. "./src/dispatcher/invariant.ts",
  23. "./src/external/react/react-addons.d.ts",
  24. "./src/external/react/react.d.ts",
  25. "./src/stores/asyncT.ts",
  26. "./src/stores/card.ts",
  27. "./src/stores/deck.ts",
  28. "./src/stores/entity.ts",
  29. "./src/stores/eventEmitter.ts",
  30. "./src/stores/id.ts",
  31. "./src/stores/store.ts",
  32. "./src/stores/template.ts",
  33. "./src/views/components/deck.ts",
  34. "./src/views/decks.ts",
  35. "./src/views/header.ts"
  36. ]
  37. }