2023-07-11 20:22:57 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": ".",
|
|
|
|
"module": "ESNext",
|
|
|
|
"target": "ESNext",
|
|
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"incremental": false,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2023-08-01 20:17:50 +00:00
|
|
|
"types": ["vite/client"],
|
2023-07-11 20:22:57 +00:00
|
|
|
"paths": {
|
|
|
|
"@/*": ["src/*"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"exclude": ["dist", "node_modules"]
|
|
|
|
}
|