説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }