/* * @Author: Kane * @Date: 2023-02-09 15:24:20 * @LastEditors: Kane * @LastEditTime: 2023-02-13 22:25:29 * @FilePath: /后端辅助工具/tsconfig.json * @Description: * * Copyright (c) ${2022} by Kane, All Rights Reserved. */ { "compilerOptions": { "outDir": "./target", "strict": false, "strictNullChecks": true, "sourceMap": true, "moduleResolution": "node", "module": "ES6", "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", }