2025-10-13 17:37:10 +09:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"types": ["vite/client"],
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
|
|
|
|
|
/* Bundler mode */
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
|
"verbatimModuleSyntax": true,
|
|
|
|
|
"moduleDetection": "force",
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
|
|
|
|
|
/* Path Aliases */
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["./src/*"],
|
|
|
|
|
"@/components/*": ["./src/components/*"],
|
|
|
|
|
"@/pages/*": ["./src/pages/*"],
|
|
|
|
|
"@/hooks/*": ["./src/hooks/*"],
|
|
|
|
|
"@/services/*": ["./src/services/*"],
|
|
|
|
|
"@/stores/*": ["./src/stores/*"],
|
|
|
|
|
"@/utils/*": ["./src/utils/*"],
|
|
|
|
|
"@/types/*": ["./src/types/*"],
|
|
|
|
|
"@/lib/*": ["./src/lib/*"]
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/* Linting */
|
|
|
|
|
"strict": true,
|
2025-10-17 14:54:44 +09:00
|
|
|
"noUnusedLocals": false,
|
|
|
|
|
"noUnusedParameters": false,
|
2025-10-13 17:37:10 +09:00
|
|
|
"erasableSyntaxOnly": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"noUncheckedSideEffectImports": true
|
|
|
|
|
},
|
|
|
|
|
"include": ["src"]
|
|
|
|
|
}
|