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.
 
 
 

26 line
536 B

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