2023-02-09 18:36:43 +08:00
|
|
|
/*
|
|
|
|
* @Author: Kane
|
|
|
|
* @Date: 2023-02-09 15:24:20
|
|
|
|
* @LastEditors: Kane
|
2023-02-13 00:43:14 +08:00
|
|
|
* @LastEditTime: 2023-02-13 00:21:52
|
2023-02-09 18:36:43 +08:00
|
|
|
* @FilePath: /后端辅助工具/tsconfig.json
|
|
|
|
* @Description:
|
|
|
|
*
|
|
|
|
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "./target",
|
|
|
|
"strict": false,
|
|
|
|
"strictNullChecks": true,
|
2023-02-13 00:43:14 +08:00
|
|
|
"target": "ES2015",
|
|
|
|
"module": "CommonJS",
|
2023-02-09 18:36:43 +08:00
|
|
|
},
|
|
|
|
// "files": [
|
2023-02-10 18:38:33 +08:00
|
|
|
// "./src/main.ts",
|
2023-02-09 18:36:43 +08:00
|
|
|
// ],
|
|
|
|
"include": [
|
2023-02-13 00:43:14 +08:00
|
|
|
"./src/**/*",
|
2023-02-10 18:38:33 +08:00
|
|
|
// "./src/*.ts",
|
|
|
|
// "src/main.ts",
|
|
|
|
// ".eslintrc.js",
|
2023-02-09 18:36:43 +08:00
|
|
|
],
|
|
|
|
"exclude": [
|
2023-02-13 00:43:14 +08:00
|
|
|
"./target",
|
|
|
|
"node_modules",
|
|
|
|
"bower_componets",
|
|
|
|
"jspm_packages",
|
2023-02-09 18:36:43 +08:00
|
|
|
],
|
2023-02-13 00:43:14 +08:00
|
|
|
// "outFile": "./target/mian.js",
|
2023-02-09 18:36:43 +08:00
|
|
|
}
|