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.

37 lines
796B

  1. {
  2. "compilerOptions": {
  3. "target": "ES2020",
  4. "useDefineForClassFields": true,
  5. "lib": ["ES2020", "DOM", "DOM.Iterable"],
  6. "module": "ESNext",
  7. "skipLibCheck": true,
  8. /* Bundler mode */
  9. "moduleResolution": "bundler",
  10. "allowImportingTsExtensions": true,
  11. "resolveJsonModule": true,
  12. "isolatedModules": true,
  13. "noEmit": true,
  14. "jsx": "react-jsx",
  15. /* Linting */
  16. "strict": true,
  17. "noUnusedLocals": true,
  18. "noUnusedParameters": true,
  19. "noFallthroughCasesInSwitch": true,
  20. "baseUrl": "./",
  21. "paths": {
  22. "@/*": ["./src/*"],
  23. "/#/*": ["types/*"]
  24. }
  25. },
  26. "include": [
  27. "src",
  28. "types/**/*.d.ts",
  29. "types/**/*.ts",
  30. "build/**/*.ts",
  31. "build/**/*.d.ts"
  32. ],
  33. "references": [{ "path": "./tsconfig.node.json" }]
  34. }