- 在 ScriptEdit.vue 中添加删除脚本 API 响应类型 - 在 Scripts.vue 和 ScriptTable.vue 中移除冗余样式 - 在 tsconfig.json 中添加路径别名配置 - 重构 useScriptApi.ts 中的 deleteScript 函数,实现真正的脚本删除
17 lines
314 B
JSON
17 lines
314 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "CommonJS",
|
|
"strict": true,
|
|
"outDir": "dist-electron",
|
|
"rootDir": "electron",
|
|
"esModuleInterop": true,
|
|
"types": ["node", "electron"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
}
|
|
},
|
|
"include": ["electron"]
|
|
}
|