谢谢阅读,
我有一个使用 tsconfig 的 gulp 的打字稿设置,如下所示:
{
"files": [
"typings/index.d.ts",
"src/app/index.config.ts",
"src/app/index.constants.ts",
"src/app/common/settings.controller.ts"
....
],
"compilerOptions": {
"noImplicitAny": false,
"target": "es5",
"experimentalDecorators" : true,
"diagnostics" : true,
"rootDir" : "src/app",
"outDir": ".tmp/serve/app",
"module": "commonjs"
}
}
这是有效的,除了每次我创建另一个 ts 文件时,比如 src/app/common/login.controller.ts,我必须将它添加到上面的“files”:[] 数组中。
有没有办法可以动态地做到这一点,这样我就不必不断更新“文件”数组?
谢谢你的帮助。