Angular 2 - tsconfig outDir
Posted
技术标签:
【中文标题】Angular 2 - tsconfig outDir【英文标题】: 【发布时间】:2017-07-01 05:04:08 【问题描述】:我目前正在开发一个 Angular2 应用程序,我面临以下问题 - 我的项目中有一些单元测试,我不希望它们与我的其他代码一起发送到 /dist 文件夹。我的项目结构如下:
dist/
-app (compiled from src/app)
-test (compiled from src/test)
src/
-app
-test
现在,我使用 tsconfig.json 中的“outDir”将所有 .js 文件编译到 /dist 目录。我想要做的只是编译所有 app/ts 文件并将它们发送到 /dist 目录,但将编译后的 .js 文件从我的 /test 目录保留在那里。它应该是这样的:
dist/
-app (compiled from src/app)
src/
-app
-test ( all compiled js files remain here )
有什么想法吗?
谢谢
【问题讨论】:
【参考方案1】:您可以尝试以下方法:
- src/
- app/
- test/
- tsconfig.json
- tsconfig.json
tsconfig.json
为src/
"compilerOptions":
"outDir": "../dist"
[...]
,
"exclude": [],
"include": ["./app"]
[...]
tsconfig.json
为test/
"compilerOptions":
"outDir": "./"
[...]
,
"extends": "../tsconfig.json",
"include": ["./"]
[...]
小心编译你的代码,你必须运行两次tsc
。
从src
文件夹,编译您的应用程序代码。
从test
文件夹,编译您的测试。
【讨论】:
以上是关于Angular 2 - tsconfig outDir的主要内容,如果未能解决你的问题,请参考以下文章
在 tsconfig.app.json 中为 Angular 项目定义路径
.spec 文件中无法识别 Angular 8+ tsconfig 路径别名