Bez popisu
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 445B

1234567891011121314151617181920
  1. {
  2. "version": "1.5.0-alpha",
  3. "compilerOptions": {
  4. "target": "es6",
  5. "declaration": false,
  6. "noImplicitAny": true,
  7. "removeComments": true,
  8. "noLib": false,
  9. "preserveConstEnums": true,
  10. "suppressImplicitAnyIndexErrors": true,
  11. "out": "./server.js"
  12. },
  13. "filesGlob": [
  14. "./**/*.ts",
  15. "!./node_modules/**/*.ts"
  16. ],
  17. "files": [
  18. "./server.ts"
  19. ]
  20. }