gpt4 book ai didi

angular6 - 在 Angular 6 中生成没有 *.spec.ts 的组件

转载 作者:行者123 更新时间:2023-12-01 06:55:34 25 4
gpt4 key购买 nike

在以前的版本中,可以使用 .angular-cli.json 禁用 spec.ts,如下所示。
有没有办法在 6.0.0 版中使用 angular.json 来做到这一点?

"defaults": {
"component": {
"spec": false
},
"service": {
"spec": false
},
...
}

最佳答案

在版本“6.0.0”中 *.spec.ts 可以用 angular.json 禁用

注意:不要忘记将“前缀”属性值“fmyp”和“fmp”更改为您的。

"schematics": {
"@schematics/angular:component": {
"prefix": "fmyp",
"styleext": "css",
"spec": false
},
"@schematics/angular:directive": {
"prefix": "fmp",
"spec": false
},
"@schematics/angular:module": {
"spec": false
},
"@schematics/angular:service": {
"spec": false
},
"@schematics/angular:pipe": {
"spec": false
},
"@schematics/angular:class": {
"spec": false
}
}

关于angular6 - 在 Angular 6 中生成没有 *.spec.ts 的组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50193766/

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