2023-05-15 00:51:32 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2025-12-23 08:58:55 +00:00
|
|
|
"incremental": true,
|
2026-01-17 09:29:13 +00:00
|
|
|
"target": "es2022",
|
2026-01-21 04:53:29 +00:00
|
|
|
"jsx": "react-jsx",
|
2023-05-15 00:51:32 +00:00
|
|
|
"lib": [
|
|
|
|
|
"dom",
|
|
|
|
|
"dom.iterable",
|
|
|
|
|
"esnext"
|
|
|
|
|
],
|
2025-12-23 08:58:55 +00:00
|
|
|
"module": "esnext",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": [
|
|
|
|
|
"./*"
|
|
|
|
|
],
|
|
|
|
|
"~@/*": [
|
|
|
|
|
"./*"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"resolveJsonModule": true,
|
2026-01-22 10:16:37 +00:00
|
|
|
"types": [
|
|
|
|
|
"vitest/globals",
|
|
|
|
|
"node"
|
|
|
|
|
],
|
2023-05-15 00:51:32 +00:00
|
|
|
"allowJs": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"esModuleInterop": true,
|
2025-12-23 08:58:55 +00:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
2023-05-15 00:51:32 +00:00
|
|
|
"isolatedModules": true,
|
2025-12-23 08:58:55 +00:00
|
|
|
"skipLibCheck": true,
|
2023-05-15 00:51:32 +00:00
|
|
|
"plugins": [
|
|
|
|
|
{
|
|
|
|
|
"name": "next"
|
|
|
|
|
}
|
2025-12-23 08:58:55 +00:00
|
|
|
]
|
2023-05-15 00:51:32 +00:00
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"next-env.d.ts",
|
|
|
|
|
"**/*.ts",
|
|
|
|
|
"**/*.tsx",
|
|
|
|
|
".next/types/**/*.ts",
|
2026-01-21 04:53:29 +00:00
|
|
|
".next/dev/types/**/*.ts"
|
2023-05-15 00:51:32 +00:00
|
|
|
],
|
|
|
|
|
"exclude": [
|
2025-11-26 07:18:07 +00:00
|
|
|
"node_modules"
|
2023-05-15 00:51:32 +00:00
|
|
|
]
|
|
|
|
|
}
|