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.

24 lines
584 B

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