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.

52 lines
1.0 KiB

10 months ago
  1. {
  2. "compilerOptions": {
  3. "target": "es5",
  4. "lib": [
  5. "dom",
  6. "dom.iterable",
  7. "esnext"
  8. ],
  9. "allowJs": true,
  10. "skipLibCheck": true,
  11. "esModuleInterop": true,
  12. "allowSyntheticDefaultImports": true,
  13. "strict": true,
  14. "forceConsistentCasingInFileNames": true,
  15. "module": "esnext",
  16. "moduleResolution": "node",
  17. "resolveJsonModule": true,
  18. "isolatedModules": true,
  19. "noEmit": true,
  20. "jsx": "react",
  21. "experimentalDecorators": true,
  22. "baseUrl": "src",
  23. "noImplicitAny": false,
  24. "noImplicitThis": false,
  25. "strictNullChecks": false,
  26. "downlevelIteration": true
  27. },
  28. "rules": {
  29. "member-access": false,
  30. "ordered-imports": false,
  31. "quotemark": false,
  32. "no-console": false,
  33. "semicolon": false,
  34. "jsx-no-lambda": false
  35. },
  36. "linterOptions": {
  37. "exclude": [
  38. "config/**/*.js",
  39. "node_modules/**/*.ts"
  40. ]
  41. },
  42. "include": [
  43. "src",
  44. "typings"
  45. ],
  46. "exclude": [
  47. "node_modules",
  48. "dist",
  49. "build"
  50. ],
  51. "extends": "./paths.json"
  52. }