mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2025-12-11 09:08:14 +08:00
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"rootDir": ".",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["DOM", "ESNext"],
|
|
"skipLibCheck": true,
|
|
"types": ["vite/client", "node", "color-convert", "js-md5", "uuid", "src/vite-env"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"composite": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@comp/*": ["src/components/*"],
|
|
"@Hutao/*": ["src/plugins/Hutao/*"],
|
|
"@Mys/*": ["src/plugins/Mys/*"],
|
|
"@Sqlite/*": ["src/plugins/Sqlite/*"],
|
|
"@Bili/*": ["src/plugins/Bili/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"*.yml",
|
|
"*.yaml",
|
|
"package.json",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.ts",
|
|
"src/**/*.vue",
|
|
"src/App.vue",
|
|
"src/data/**/*.json",
|
|
"tsconfig.json",
|
|
"vite.config.ts",
|
|
"eslint.config.mjs"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|