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.

44 lines
886 B

5 months ago
4 months ago
5 months ago
5 months ago
4 months ago
5 months ago
4 months ago
5 months ago
4 months ago
5 months ago
  1. {
  2. "compilerOptions": {
  3. "target": "ES2020",
  4. "useDefineForClassFields": true,
  5. "lib": [
  6. "ES2020",
  7. "DOM",
  8. "DOM.Iterable"
  9. ],
  10. "module": "ESNext",
  11. "skipLibCheck": true,
  12. /* Bundler mode */
  13. "moduleResolution": "bundler",
  14. "allowImportingTsExtensions": true,
  15. "resolveJsonModule": true,
  16. "isolatedModules": true,
  17. "noEmit": true,
  18. "jsx": "react-jsx",
  19. /* Linting */
  20. "noImplicitAny": false,
  21. "strict": true,
  22. "noUnusedLocals": false,
  23. "noUnusedParameters": false,
  24. "noFallthroughCasesInSwitch": true,
  25. "allowSyntheticDefaultImports": true,
  26. /* Type checking */
  27. "strictNullChecks": true,
  28. // "files": [ "./src/**/*.d.ts"],
  29. "paths": {
  30. "@/*": [
  31. "./src/*"
  32. ]
  33. }
  34. },
  35. "include": [
  36. "./src"
  37. ],
  38. "references": [
  39. {
  40. "path": "./tsconfig.node.json"
  41. }
  42. ]
  43. }