我在尝试将我编译的 Typescript 文件输出到我的父目录时遇到了一些问题。假设我有这样的结构:
app
routes
| src
| test.ts
| test2.ts
在这个例子中,我希望我编译的 test.js 和 test2.js 文件仍然出现在 routes 目录中,而不是 src 文件夹中。谁能给我一些指导?这是我的 Grunt 任务的样子:
ts: {
app: {
files: {
src: ["**/\*/src/*.ts", "!node_modules/**/*.ts"],
dest: "."
},
options: {
module: "commonjs",
noLib: true,
target: "es6",
sourceMap: false
}
}
},
谢谢!