mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2024-11-21 09:36:35 +00:00
35 lines
866 B
JSON
35 lines
866 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "vue",
|
|
"lib": [
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"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"}]
|
|
}
|