32 lines
746 B
JSON
32 lines
746 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"lib": ["DOM", "ESNext"],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "vue",
|
|
"moduleResolution": "node",
|
|
"isolatedModules": true,
|
|
"resolveJsonModule": true,
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"~/*": ["./*"]
|
|
},
|
|
"types": [
|
|
"vite/client",
|
|
"node",
|
|
"unplugin-icons/types/vue",
|
|
"naive-ui/volar"
|
|
]
|
|
},
|
|
"include": ["./**/*.ts", "./**/*.tsx", "./**/*.vue"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|