我正在尝试运行这个gruntfile:
module.exports = function (grunt) {
grunt.initConfig({
typescript: {
base: {
src: ['/app/*.ts'],
dest: 'wwwroot/app.js',
options: {
module: 'amd',
target: 'es5'
}
}
}
});
grunt.loadNpmTasks("grunt-typescript");
};
这适用于/app/*.ts中的文件但是如何才能使每个.ts文件(包括/ app下的子目录中的文件)运行?
答案 0 :(得分:3)
这应该这样做:
src: ['/app/**/*.ts'],