2023-02-08 22:21:33 -05:00
|
|
|
{
|
2023-02-12 21:00:08 -05:00
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": ".",
|
|
|
|
"module": "ESNext",
|
|
|
|
"target": "ESNext",
|
|
|
|
"lib": ["DOM", "ESNext"],
|
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2023-03-02 08:27:20 -05:00
|
|
|
"skipLibCheck": true,
|
2023-02-12 21:00:08 -05:00
|
|
|
"paths": {
|
|
|
|
"@/*": ["./src/*"]
|
|
|
|
},
|
2023-03-02 08:27:20 -05:00
|
|
|
"types": ["vite/client", "node", "naive-ui/volar"]
|
2023-02-12 21:00:08 -05:00
|
|
|
},
|
2023-02-13 07:13:19 -05:00
|
|
|
"exclude": ["node_modules", "dist", "service"]
|
2023-02-08 22:21:33 -05:00
|
|
|
}
|