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.

34 lines
814 B

5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
  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. "noImplicitAny": false,
  17. "strict": true,
  18. "noUnusedLocals": true,
  19. "noUnusedParameters": true,
  20. "noFallthroughCasesInSwitch": true,
  21. "allowSyntheticDefaultImports": true,
  22. /* Type checking */
  23. "strictNullChecks": true,
  24. "files": [ "./src/**/*.d.ts"],
  25. "paths": {
  26. "@/*": ["./src/*"]
  27. }
  28. },
  29. "include": ["./src"],
  30. "references": [{ "path": "./tsconfig.node.json" }]
  31. }