2025-09-11 23:48:23 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2017",
|
2025-12-14 19:06:57 +00:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
2025-09-11 23:48:23 +00:00
|
|
|
"allowJs": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"strict": false,
|
2025-12-14 19:06:57 +00:00
|
|
|
"noUnusedLocals": true,
|
2025-09-11 23:48:23 +00:00
|
|
|
"noEmit": true,
|
|
|
|
|
"incremental": true,
|
|
|
|
|
"module": "esnext",
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
2025-12-12 22:16:21 +00:00
|
|
|
"jsx": "react-jsx",
|
2025-09-11 23:48:23 +00:00
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
2025-12-14 19:06:57 +00:00
|
|
|
"@/*": ["*"]
|
2025-09-11 23:48:23 +00:00
|
|
|
},
|
|
|
|
|
"plugins": [
|
|
|
|
|
{
|
|
|
|
|
"name": "next"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
2025-12-12 22:16:21 +00:00
|
|
|
"include": [
|
|
|
|
|
"next-env.d.ts",
|
|
|
|
|
".next/types/**/*.ts",
|
|
|
|
|
"**/*.ts",
|
|
|
|
|
"**/*.tsx",
|
2025-12-30 04:02:54 +00:00
|
|
|
"docs/types/**/*.ts",
|
|
|
|
|
"docs/dev/types/**/*.ts",
|
2025-12-12 22:16:21 +00:00
|
|
|
".next/dev/types/**/*.ts"
|
|
|
|
|
],
|
2025-12-14 19:06:57 +00:00
|
|
|
"exclude": ["node_modules"]
|
2025-09-11 23:48:23 +00:00
|
|
|
}
|