Template for starting apps, powered by Next.js
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.
 
 

31 lines
559 B

  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "target": "es5",
  5. "sourceMap": true,
  6. "lib": [
  7. "dom",
  8. "dom.iterable",
  9. "esnext"
  10. ],
  11. "allowJs": true,
  12. "skipLibCheck": true,
  13. "strict": false,
  14. "forceConsistentCasingInFileNames": true,
  15. "noEmit": true,
  16. "esModuleInterop": true,
  17. "moduleResolution": "node",
  18. "resolveJsonModule": true,
  19. "isolatedModules": true,
  20. "jsx": "preserve"
  21. },
  22. "exclude": [
  23. "node_modules"
  24. ],
  25. "include": [
  26. "next-env.d.ts",
  27. "**/*.ts",
  28. "**/*.tsx"
  29. ]
  30. }