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

39 lines
873 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-13 16:20:47 +00:00
* @LastEditTime: 2023-02-13 23:28:22
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-13 08:52:44 +00:00
"sourceMap": true,
"allowJs": true,
2023-02-13 16:20:47 +00:00
"checkJs": false,
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
}