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

29 lines
590 B
JSON
Raw Normal View History

2023-02-09 10:36:43 +00:00
/*
* @Author: Kane
* @Date: 2023-02-09 15:24:20
* @LastEditors: Kane
2023-02-10 10:38:33 +00:00
* @LastEditTime: 2023-02-10 10:16:40
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,
},
// "files": [
2023-02-10 10:38:33 +00:00
// "./src/main.ts",
2023-02-09 10:36:43 +00:00
// ],
"include": [
2023-02-10 10:38:33 +00:00
"./src/**/*.ts",
// "./src/*.ts",
// "src/main.ts",
// ".eslintrc.js",
2023-02-09 10:36:43 +00:00
],
"exclude": [
"./target"
],
}