我有一个 tsconfig.json 文件包含
{
"extends": "../../zlux-app-manager/virtual-desktop/plugin-config/tsconfig.base.json",
"include": [
"src/**/*.ts",
"../../zlux-platform/interface/src/mvd-hosting.d.ts"
],
"compilerOptions": {
"skipLibCheck": true
}
}
Run Code Online (Sandbox Code Playgroud)
我想用环境变量替换../../ 。可能的解决方案有哪些?
development-environment environment-variables typescript tsconfig tsconfig-paths