2025-08-11 23:21:36 +07:00
|
|
|
{
|
|
|
|
"files": [],
|
|
|
|
"references": [
|
|
|
|
{
|
|
|
|
"path": "./tsconfig.app.json"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "./tsconfig.node.json"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ES2022",
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
"module": "ESNext",
|
|
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
|
|
"types": ["vite/client"],
|
|
|
|
|
|
|
|
/* Bundler mode */
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
"allowImportingTsExtensions": false,
|
|
|
|
"verbatimModuleSyntax": true,
|
2025-08-12 00:22:28 +07:00
|
|
|
|
2025-08-11 23:21:36 +07:00
|
|
|
/* Linting */
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noUncheckedSideEffectImports": true,
|
2025-08-12 00:22:28 +07:00
|
|
|
"baseUrl": ".",
|
2025-08-11 23:21:36 +07:00
|
|
|
"paths": {
|
2025-08-12 00:22:28 +07:00
|
|
|
"@/*": ["./src/*"]
|
2025-08-11 23:21:36 +07:00
|
|
|
}
|
|
|
|
}
|
2025-08-12 00:22:28 +07:00
|
|
|
}
|