gpt4 book ai didi

javascript - 如何指定文件夹内的所有 typescript 文件作为 grunt 的源?

转载 作者:行者123 更新时间:2023-11-28 19:27:37 25 4
gpt4 key购买 nike

我正在尝试运行这个 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 下子目录中的文件)?

最佳答案

这应该可以做到:

src: ['/app/**/*.ts'],

关于javascript - 如何指定文件夹内的所有 typescript 文件作为 grunt 的源?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27533030/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com