2025-03-30 14:48:57 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2025-04-16 01:20:15 +08:00
|
|
|
"target": "ES2017",
|
2025-05-05 17:27:36 +08:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
2025-03-30 14:48:57 +08:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
2025-07-10 10:15:45 +08:00
|
|
|
"strict": false,
|
2025-03-30 14:48:57 +08:00
|
|
|
"noEmit": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"module": "esnext",
|
2025-04-16 01:20:15 +08:00
|
|
|
"moduleResolution": "bundler",
|
2025-03-30 14:48:57 +08:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"incremental": true,
|
2025-07-10 10:15:45 +08:00
|
|
|
// "noUnusedLocals": true,
|
|
|
|
// "noUnusedParameters": true,
|
|
|
|
// "noImplicitAny": true,
|
2025-04-16 01:20:15 +08:00
|
|
|
"ignoreDeprecations": "5.0",
|
2025-03-30 14:48:57 +08:00
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"name": "next"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"paths": {
|
2025-05-05 17:27:36 +08:00
|
|
|
"@/*": ["./src/*"]
|
2025-04-21 01:32:23 +08:00
|
|
|
}
|
2025-03-30 14:48:57 +08:00
|
|
|
},
|
2025-05-05 17:27:36 +08:00
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
|
|
"exclude": ["node_modules"]
|
2025-03-30 14:48:57 +08:00
|
|
|
}
|