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

31 lines
645 B
JSON

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