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.

67 lines
1.3 KiB

5 days ago
5 days ago
5 days ago
5 days ago
  1. {
  2. "compilerOptions": {
  3. "target": "es5",
  4. "lib": [
  5. "dom",
  6. "dom.iterable",
  7. "esnext"
  8. ],
  9. "allowJs": true,
  10. "skipLibCheck": true,
  11. "strict": true,
  12. "forceConsistentCasingInFileNames": true,
  13. "noEmit": true,
  14. "esModuleInterop": true,
  15. "module": "esnext",
  16. "moduleResolution": "node",
  17. "resolveJsonModule": true,
  18. "isolatedModules": true,
  19. "jsx": "preserve",
  20. // "paths": {
  21. // },
  22. "incremental": true,
  23. "paths": {
  24. "@/*": [
  25. "./src/*"
  26. ],
  27. "@components/*": [
  28. "src/components/*"
  29. ],
  30. "@containers/*": [
  31. "src/containers/*"
  32. ],
  33. "@contexts/*": [
  34. "src/contexts/*"
  35. ],
  36. "@framework/*": [
  37. "src/framework/basic-rest/*"
  38. ],
  39. "@settings/*": [
  40. "src/settings/*"
  41. ],
  42. "@styles/*": [
  43. "src/styles/*"
  44. ],
  45. "@utils/*": [
  46. "src/utils/*"
  47. ]
  48. },
  49. "baseUrl": ".",
  50. "plugins": [
  51. {
  52. "name": "next"
  53. }
  54. ]
  55. },
  56. // "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
  57. "include": [
  58. "next-env.d.ts",
  59. "additional.d.ts",
  60. "src/**/*.ts",
  61. "src/**/*.tsx",
  62. ".next/types/**/*.ts"
  63. ],
  64. "exclude": [
  65. "node_modules"
  66. ]
  67. }