2025-10-24 22:20:37 +00:00
|
|
|
{
|
2026-01-11 20:06:21 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2020",
|
|
|
|
|
"lib": [
|
|
|
|
|
"ES2020",
|
|
|
|
|
"DOM",
|
|
|
|
|
"DOM.Iterable"
|
|
|
|
|
],
|
|
|
|
|
"types": [
|
|
|
|
|
"bun-types"
|
|
|
|
|
],
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"incremental": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": [
|
|
|
|
|
"./src/*"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"plugins": [
|
|
|
|
|
{
|
|
|
|
|
"name": "next"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"noEmit": true
|
|
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"next-env.d.ts",
|
|
|
|
|
"**/*.ts",
|
|
|
|
|
"**/*.tsx",
|
|
|
|
|
".next/types/**/*.ts",
|
|
|
|
|
".next\\dev/types/**/*.ts",
|
|
|
|
|
".next\\dev/types/**/*.ts",
|
|
|
|
|
".next/dev/types/**/*.ts"
|
|
|
|
|
],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"node_modules"
|
|
|
|
|
]
|
2025-10-24 22:20:37 +00:00
|
|
|
}
|