我的项目结构如下:
Root
|
+- /build
| |
| +- /server
| |
| +- /app
|
+- /source
|
+- /server
| |
| +-tsconfig.json
| |
| +-(typescript files)
|
+- /app
|
+- tsconfig.json
|
+- (typescript files)
我正在尝试通过以下方式使用不同的 tsconfig.json 文件:
tsc -p <path>
原因是不同的输出目标。当我在 /server 文件夹内的 tsconfig.json 文件中指定 outdir 为
"outDir": "./../build/server"
它在名为 build/server 的源中创建文件夹
有没有办法比指定的项目根导航更远?