next.json15 lines · main
| 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 | } |