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

40 lines
918 B
JSON

/*
* @Author: Kane
* @Date: 2023-02-09 15:24:20
* @LastEditors: Kane
* @LastEditTime: 2023-02-17 23:15:11
* @FilePath: //tsconfig.json
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
{
"compilerOptions": {
"outDir": "./target",
"strict": false,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"sourceMap": true,
"allowJs": true,
"checkJs": true,
"moduleResolution": "node",
"module": "CommonJS",
"target": "ES2015"
},
// "files": [
// "./src/main.ts",
// ],
"include": [
"./src/**/*",
// "./src/*.ts",
// "src/main.ts",
// ".eslintrc.js",
],
"exclude": [
"./target",
"node_modules",
"bower_componets",
"jspm_packages",
],
// "outFile": "./target/mian.js",
}