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

25 行
636 B

  1. {
  2. "include": ["categories/**/src/*"],
  3. "exclude": [
  4. "node_modules",
  5. "**/*.test.{ts,js,tsx,jsx}"
  6. ],
  7. "compilerOptions": {
  8. "module": "ESNext",
  9. "lib": ["ESNext", "DOM"],
  10. "importHelpers": true,
  11. "declaration": true,
  12. "sourceMap": true,
  13. "strict": true,
  14. "noUnusedLocals": true,
  15. "noUnusedParameters": true,
  16. "noImplicitReturns": true,
  17. "noFallthroughCasesInSwitch": true,
  18. "moduleResolution": "node",
  19. "jsx": "react",
  20. "esModuleInterop": true,
  21. "target": "es2018",
  22. "emitDeclarationOnly": true
  23. }
  24. }