gpt4 book ai didi

gruntjs - 任务 "typescript"在 grunt 中失败

转载 作者:搜寻专家 更新时间:2023-10-30 21:20:34 24 4
gpt4 key购买 nike

我在 gruntFile.js 中编写了以下代码。

typescript: {
base: {
options: {
target: 'es5',
sourceMap: true,
noImplicitAny: true
}
},
default: {
files: [
{ src: 'source/tests/**/*.ts', dest: 'build'},
{ src: 'source/scripts/**/*.ts', dest: 'build'}
]
}
},

我正在尝试从命令行运行“grunt typescript”命令。它显示以下错误。

enter image description here

我也尝试过“grunt typescript --force”命令。但它仍然不起作用。 enter image description here

它仍然没有创建构建文件夹,这意味着任务无法正常工作。提前致谢。

编辑:- 我已按照答案中的建议将 gruntfile.js 更改为以下内容。

typescript: {
base: {
src: ['source/tests/**/*.ts'],
dest: 'build/',
options: {
target: 'es5',
sourceMap: true,
noImplicitAny: true
}
},
}

但我仍然面临着同样的问题。

最佳答案

看最新documentation我可以找到 grunt-typescript,你的语法是错误的。我有一种感觉,你真的想使用 grunt-ts .它也是我所知道的与您提供的语法兼容的插件。

我个人的意见:使用 grunt-ts,使用它更容易,而且我已经通过几次迭代尝试了一堆工具来达到我们当前的构建环境.

关于gruntjs - 任务 "typescript"在 grunt 中失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31919690/

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