{ "compilerOptions": { "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, "skipLibCheck": true, "strict": true, "noEmit": true, "esModuleInterop": true, "module": "esnext", "moduleResolution": "bundler", "resolveJsonModule": true, "isolatedModules": true, "jsx": "preserve", "incremental": true, "plugins": [ { "name": "next" } ], "paths": { "@/*": ["./src/*"], "@/config": ["./src/app/config.ts"], "@/components/*": ["./src/app/components/*"], "@/provider/*": ["./src/app/provider/*"], "@/font/*": ["./src/app/font/*"], "@/types/*": ["./src/app/types/*"], "@/lib/*": ["./src/app/common/*"], "@/lib": ["./src/app/common/utils.ts"], "@/markdown/*": ["./src/markdown/*"], "@/configJson": ["./config.json"] } }, "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], "exclude": ["node_modules"] }