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

20 行
465 B

  1. {
  2. "compilerOptions": {
  3. "allowSyntheticDefaultImports": false,
  4. "target": "es5",
  5. "module": "commonjs",
  6. "jsx": "react",
  7. "moduleResolution": "node",
  8. "noImplicitAny": false,
  9. "noUnusedLocals": false,
  10. "noUnusedParameters": false,
  11. "removeComments": true,
  12. "strictNullChecks": true,
  13. "preserveConstEnums": true,
  14. "sourceMap": true,
  15. "esModuleInterop": true,
  16. "lib": ["es2015", "es2016", "dom"],
  17. "types": ["node"]
  18. }
  19. }