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.

46 lines
1.1 KiB

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