We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ddfebe commit 16db656Copy full SHA for 16db656
packages/@angular/cli/models/webpack-configs/typescript.ts
@@ -14,6 +14,10 @@ const webpackLoader: string = g['angularCliIsLocal']
14
15
function _createAotPlugin(wco: WebpackConfigOptions, options: any) {
16
const { appConfig, projectRoot, buildOptions } = wco;
17
+ options.compilerOptions = options.compilerOptions || {};
18
+ if (wco.buildOptions.preserveSymlinks) {
19
+ options.compilerOptions.preserveSymlinks = true;
20
+ }
21
22
// Read the environment, and set it in the compiler host.
23
let hostReplacementPaths: any = {};
0 commit comments