next.json 367 B

123456789101112131415
  1. {
  2. "$schema": "https://json.schemastore.org/tsconfig",
  3. "extends": "./base.json",
  4. "compilerOptions": {
  5. "target": "ES2022",
  6. "lib": ["DOM", "DOM.Iterable", "ES2023"],
  7. "jsx": "preserve",
  8. "module": "ESNext",
  9. "moduleResolution": "Bundler",
  10. "allowJs": true,
  11. "noEmit": true,
  12. "incremental": true,
  13. "plugins": [{ "name": "next" }]
  14. }
  15. }