Preview local Markdown files live in a web browser
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

tsconfig.json 384B

123456789101112131415161718
  1. {
  2. "compilerOptions": {
  3. "target": "es5",
  4. "module": "commonjs",
  5. "outDir": "dist",
  6. "strict": true,
  7. "noImplicitAny": true,
  8. "strictNullChecks": true,
  9. "strictFunctionTypes": true,
  10. "noImplicitThis": true,
  11. "alwaysStrict": true,
  12. "noUnusedLocals": true,
  13. "noUnusedParameters": true,
  14. "noImplicitReturns": true,
  15. "esModuleInterop": true
  16. }
  17. }