加入vuex模块!
This commit is contained in:
41
code/web/task_schedule/tsconfig.json
Normal file
41
code/web/task_schedule/tsconfig.json
Normal file
@@ -0,0 +1,41 @@
|
||||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2023-03-01 23:38:12
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /task_schedule/tsconfig.json
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||
*/
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "es2015",
|
||||
"useDefineForClassFields": true,
|
||||
"module": "CommonJS",
|
||||
"moduleResolution": "node",
|
||||
"strict": true,
|
||||
"jsx": "preserve",
|
||||
"sourceMap": true,
|
||||
"resolveJsonModule": true,
|
||||
"esModuleInterop": true,
|
||||
"baseUrl": "./", // paths 路径解析起点
|
||||
"paths": {
|
||||
"@/*": [
|
||||
"src/*"
|
||||
] // 别名路径设置
|
||||
},
|
||||
"lib": [
|
||||
"esnext",
|
||||
"dom"
|
||||
],
|
||||
"types": [
|
||||
"vite/client"
|
||||
]
|
||||
},
|
||||
"include": [
|
||||
"src/**/*.ts",
|
||||
"src/**/*.tsx",
|
||||
"src/**/*.vue",
|
||||
"*.d.ts",
|
||||
],
|
||||
}
|
Reference in New Issue
Block a user