Second frontend, written in Next.JS + Typescript.
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.

29 lines
533 B

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