小心编译代码时,您必须运行两次
我目前正在开发一个 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 )
知道吗?
谢谢
您可以尝试以下操作:
- 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
文件夹中编译测试。