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

tsconfig.json 449B

12345678910111213141516171819
  1. {
  2. "compilerOptions": {
  3. "strictPropertyInitialization": false,
  4. "noImplicitAny": false,
  5. "target": "esNext",
  6. "declaration": true,
  7. "module": "commonjs",
  8. "moduleResolution": "node",
  9. "strict": true,
  10. "experimentalDecorators": true,
  11. "emitDecoratorMetadata": true,
  12. "baseUrl": "./",
  13. "outDir": "./lib",
  14. "strictNullChecks": false,
  15. "esModuleInterop": true
  16. },
  17. "include": ["src", "test"],
  18. "exclude": []
  19. }