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