29 lines
590 B
JSON
29 lines
590 B
JSON
/*
|
|
* @Author: Kane
|
|
* @Date: 2023-02-09 15:24:20
|
|
* @LastEditors: Kane
|
|
* @LastEditTime: 2023-02-10 10:16:40
|
|
* @FilePath: /后端辅助工具/tsconfig.json
|
|
* @Description:
|
|
*
|
|
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
|
*/
|
|
{
|
|
"compilerOptions": {
|
|
"outDir": "./target",
|
|
"strict": false,
|
|
"strictNullChecks": true,
|
|
},
|
|
// "files": [
|
|
// "./src/main.ts",
|
|
// ],
|
|
"include": [
|
|
"./src/**/*.ts",
|
|
// "./src/*.ts",
|
|
// "src/main.ts",
|
|
// ".eslintrc.js",
|
|
],
|
|
"exclude": [
|
|
"./target"
|
|
],
|
|
} |