2024-08-03 12:46:12 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"strict": false,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2024-10-28 18:38:11 +08:00
|
|
|
"target": "es2021", // 你可以设置目标版本,
|
|
|
|
|
"baseUrl": ".", // 设置模块解析的根目录为项目根目录
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["src/*"] // 使用 @ 作为 src 目录的别名
|
|
|
|
|
}
|
2024-08-03 12:46:12 +08:00
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"src",
|
2025-03-22 10:38:23 +08:00
|
|
|
"./package.json",
|
|
|
|
|
"src/renderer/src/components/Book/Components/.vue"
|
|
|
|
|
]
|
2024-10-28 18:38:11 +08:00
|
|
|
}
|