tsconfig.json 502 B

1234567891011121314151617181920
  1. {
  2. "extends": "../../tsconfig.base.json",
  3. "compilerOptions": {
  4. "lib": ["ES2022", "DOM", "DOM.Iterable"],
  5. "target": "ES2017",
  6. "module": "ESNext",
  7. "moduleResolution": "bundler",
  8. "jsx": "preserve",
  9. "incremental": true,
  10. "strict": true,
  11. "plugins": [{ "name": "next" }],
  12. "paths": {
  13. "@/*": ["./src/*"]
  14. },
  15. "noEmit": true,
  16. "allowJs": true
  17. },
  18. "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
  19. "exclude": ["node_modules"]
  20. }