fix: apply seo agent improvements to tsconfig.json

This commit is contained in:
cupadev-admin 2026-03-09 19:01:26 +00:00
parent 4e6dbec113
commit 9af3bcfd79
1 changed files with 10 additions and 3 deletions

View File

@ -1,11 +1,12 @@
{
"compilerOptions": {
"target": "es5",
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"noEmitOnError": false,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
@ -13,8 +14,14 @@
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [{ "name": "next" }],
"paths": { "@/*": ["./src/*"] }
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]