本文介绍了从Angular 2中的构建中排除文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何使用angular-cli从角度构建中排除文件.我只添加了tsconfig.json
和tsconfig.app.json
文件中要排除的路径,但是当我运行ng serve
时,angular仍然试图编译文件.
How can I exclude files from the angular build using angular-cli. I just add the path to exclude in the tsconfig.json
and tsconfig.app.json
files but when I run ng serve
, angular still trying to compile the files.
有什么想法吗?
推荐答案
使用exclude属性" rel = "noreferrer"> tsconfig.json
(在根级别),即:
Using exclude
property of tsconfig.json
(at root level), i.e.:
{
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}
这篇关于从Angular 2中的构建中排除文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!