| 1234567891011121314151617181920 |
- {
- "extends": "../../tsconfig.base.json",
- "compilerOptions": {
- "lib": ["ES2022", "DOM", "DOM.Iterable"],
- "target": "ES2017",
- "module": "ESNext",
- "moduleResolution": "bundler",
- "jsx": "preserve",
- "incremental": true,
- "strict": true,
- "plugins": [{ "name": "next" }],
- "paths": {
- "@/*": ["./src/*"]
- },
- "noEmit": true,
- "allowJs": true
- },
- "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
- "exclude": ["node_modules"]
- }
|