2025-03-19 06:04:06 +00:00
|
|
|
{
|
2025-12-06 12:46:40 +09:00
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2017",
|
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"module": "esnext",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
"incremental": true,
|
|
|
|
|
"plugins": [
|
|
|
|
|
{
|
|
|
|
|
"name": "next"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["./*"]
|
|
|
|
|
}
|
|
|
|
|
},
|
2025-12-29 14:30:25 +09:00
|
|
|
"files": ["electron/electron.d.ts"],
|
2025-12-06 12:46:40 +09:00
|
|
|
"include": [
|
|
|
|
|
"next-env.d.ts",
|
|
|
|
|
"**/*.ts",
|
|
|
|
|
"**/*.tsx",
|
|
|
|
|
".next/types/**/*.ts",
|
|
|
|
|
".next/dev/types/**/*.ts"
|
2025-12-04 13:48:30 +09:00
|
|
|
],
|
2025-12-22 09:18:21 +08:00
|
|
|
"exclude": ["node_modules", "packages", "electron", "dist-electron"]
|
2025-03-19 06:04:06 +00:00
|
|
|
}
|