从 Angular 2 的构建中排除文件 [英] Exclude files from build in Angular 2

查看:40
本文介绍了从 Angular 2 的构建中排除文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用 Angular-CLI 从 Angular 构建中排除文件.我刚刚在 tsconfig.jsontsconfig.app.json 文件中添加了要排除的路径,但是当我运行 ng serve 时,Angular 仍在尝试编译这些文件.

How to exclude files from the Angular build using Angular-CLI. I've just added the path to exclude in the tsconfig.json and tsconfig.app.json files, but when I run ng serve, Angular is still trying to compile the files.

有什么想法吗?

推荐答案

使用 tsconfig.json(在根级别),即:

Using exclude property of tsconfig.json (at root level), i.e.:

{
   "exclude": [
       "node_modules",
       "**/*.spec.ts"
   ]
}

这篇关于从 Angular 2 的构建中排除文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆