it-console/code/ts/后端辅助工具/tsconfig.json

26 lines
504 B
JSON

/*
* @Author: Kane
* @Date: 2023-02-09 15:24:20
* @LastEditors: Kane
* @LastEditTime: 2023-02-09 15:29:03
* @FilePath: //tsconfig.json
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
{
"compilerOptions": {
"outDir": "./target",
"strict": false,
"strictNullChecks": true,
},
// "files": [
// "./src/**/*"
// ],
"include": [
"./src/**/*"
],
"exclude": [
"./target"
],
}