You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
675 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"target": "ESNext",
"lib": ["DOM", "ESNext"],
"strict": false,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"jsx": "preserve",
"moduleResolution": "node",
"isolatedModules": true,
"resolveJsonModule": true,
"noUnusedLocals": false,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"paths": {
"~/*": ["./*"],
"@/*": ["./src/*"]
},
"types": ["vite/client", "node", "unplugin-icons/types/vue", "naive-ui/volar"],
"outDir": "dist"
},
"exclude": ["node_modules", "dist"]
}