Design system.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

25 lines
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. }