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
749 B

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. // "paths": {
  17. // },
  18. "incremental": true,
  19. "baseUrl": ".",
  20. "plugins": [
  21. {
  22. "name": "next"
  23. }
  24. ],
  25. },
  26. // "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
  27. "include": [
  28. "next-env.d.ts",
  29. "additional.d.ts",
  30. "src/**/*.ts",
  31. "src/**/*.tsx"
  32. ],
  33. "exclude": ["node_modules"]
  34. }