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

tsconfig.json 361B

1234567891011121314151617
  1. {
  2. "compilerOptions": {
  3. "target": "ES2020",
  4. "module": "CommonJS",
  5. "rootDir": "src",
  6. "outDir": "dist",
  7. "strict": true,
  8. "esModuleInterop": true,
  9. "noFallthroughCasesInSwitch": true,
  10. "experimentalDecorators": true,
  11. "emitDecoratorMetadata": true,
  12. "strictPropertyInitialization": false,
  13. },
  14. "exclude": [
  15. "scripts"
  16. ]
  17. }