mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-07-19 12:03:37 +00:00

fix: remove useless defineProps fix: add the missing dependencies to package.json fix: add ES2022 into tsconfig.json
28 lines
792 B
JSON
28 lines
792 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "vue",
|
|
"lib": ["DOM", "DOM.Iterable", "ES2022"],
|
|
"baseUrl": ".",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"types": ["vite/client"],
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"experimentalDecorators": true,
|
|
"useDefineForClassFields": true
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|