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.

23 lines
611 B

  1. {
  2. "compilerOptions": {
  3. "target": "ES2017",
  4. "lib": ["dom", "dom.iterable", "esnext"],
  5. "allowJs": true,
  6. "skipLibCheck": true,
  7. "strict": true,
  8. "noEmit": true,
  9. "esModuleInterop": true,
  10. "module": "esnext",
  11. "moduleResolution": "bundler",
  12. "resolveJsonModule": true,
  13. "isolatedModules": true,
  14. "jsx": "preserve",
  15. "incremental": true,
  16. "paths": {
  17. "@/*": ["./src/*"]
  18. },
  19. "moduleResolution": "node",
  20. "forceConsistentCasingInFileNames": true
  21. },
  22. "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "next.config.js"],
  23. "exclude": ["node_modules"]
  24. }