LaiTool/tsconfig.json

20 lines
532 B
JSON
Raw Permalink Normal View History

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