gpt4 book ai didi

angular - 运行 ng build 时如何排除根 src 文件夹中的某些文件夹

转载 作者:行者123 更新时间:2023-12-02 14:50:02 26 4
gpt4 key购买 nike

在我的 angular-cli 生成的应用程序中,有一个控制 ng 操作的 angular-cli.json 文件。

但是我们如何排除根目录中指定的 src 内的某些文件夹?

"apps": [{
"root": "src",
"outDir": "dist",
"assets": [
"assets",
"favicon.ico"
],
"index": "index.html",
"main": "main.ts",
"polyfills": "polyfills.ts",
"test": "test.ts",
"tsconfig": "tsconfig.app.json",
"testTsconfig": "tsconfig.spec.json",
"prefix": "app",
"styles": [
"styles.css"
],
"scripts": [],
"environmentSource": "environments/environment.ts",
"environments": {
"dev": "environments/environment.ts",
"prod": "environments/environment.prod.ts"
}
}],

我正在考虑添加类似 "exclude": [ "folder_name1", "folder_name1"] 的内容,但我找不到任何同意这一点的解决方案。

最佳答案

ng-build 将运行 tsc 来编译目标文件,您可以在 tsconfig.app.json< 中添加 exclude 设置 排除某些特定文件或文件夹。

{
"compilerOptions": {
...
},
"exclude": [
"folder" // example
]
}

关于angular - 运行 ng build 时如何排除根 src 文件夹中的某些文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44494222/

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