desktop_task_schedule/code/web/task_schedule/tsconfig.json

47 lines
1.1 KiB
JSON
Raw Permalink Normal View History

2023-03-01 16:35:21 +00:00
/*
* @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": {
2023-03-03 08:08:27 +00:00
"forceConsistentCasingInFileNames": true,
2023-03-01 16:35:21 +00:00
"useDefineForClassFields": true,
2023-03-04 10:05:47 +00:00
"target": "ESNext",
2023-03-07 15:04:03 +00:00
"module": "CommonJS",
"moduleResolution": "node",
2023-03-01 16:35:21 +00:00
"strict": true,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
2023-03-03 08:08:27 +00:00
"esModuleInterop": false,
2023-03-01 16:35:21 +00:00
"baseUrl": "./", // paths 路径解析起点
2023-03-03 08:08:27 +00:00
"paths": { // 别名路径设置
2023-03-01 16:35:21 +00:00
"@/*": [
"src/*"
2023-03-03 08:08:27 +00:00
],
2023-03-01 16:35:21 +00:00
},
"lib": [
2023-03-07 09:54:52 +00:00
"ESNext",
"DOM"
2023-03-01 16:35:21 +00:00
],
"types": [
"vite/client"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"*.d.ts",
2023-03-03 08:08:27 +00:00
"src/router/index.js",
"src/router/index.js",
2023-03-01 16:35:21 +00:00
],
2023-03-07 09:54:52 +00:00
"exclude": [
"./node_modules",
]
2023-03-01 16:35:21 +00:00
}