删除组件上生成的有关本机角度文件的.Spec文件

问题描述 投票:1回答:1

我是nativescript bot的新手,不是angular的新手。我现在正在学习与角度的母语。在nativescript-NG项目中生成组件时,我得到的.spec文件引发语法错误。删除它可以解决问题。在所有情况下,我都希望生成没有.spec文件的组件,服务,模块...。我曾经用以下方法在角度上实现:

ng config diagrams。@ schematics / angular.component.spec false

请务必通过服务,模块...替换组件。

这在nativescript-Ng中没有成功,这非常正确,因为nativescript使用@ nativescript / schematics,其中angular使用@ schematics / angular

我尝试过:

ng config diagrams。@ nativescript / schematics.component.spec false

没有运气。

我如何实现我的目标?

angularjs angular nativescript angular2-nativescript nativescript-angular
1个回答
0
投票

在nativescript-NG项目的angular.json文件中,添加以下内容:

  "schematics": {
    "@schematics/angular:component": {
    "skipTests": true
  }
 },

现在测试。希望对您有所帮助!

P.S:它适用于任何事物,只需将组件替换为您需要的:)

© www.soinside.com 2019 - 2024. All rights reserved.