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.

27 lines
662 B

4 weeks ago
3 weeks ago
4 weeks ago
3 weeks ago
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. "noEmitOnError": false,
  22. "skipLibCheck": true,
  23. "strict": false
  24. },
  25. "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
  26. "exclude": ["node_modules"]
  27. }