By default this will be false starting from angular 6
Now, in JIT mode, we can set it as part of CompileOptions :
main.ts
platformBrowserDynamic().bootstrapModule(AppModule, { preserveWhitespaces: false });
For aot, we must add this option to
tsconfig.app.json
{ "extends": "../tsconfig.json", "compilerOptions": { "outDir": "../out-tsc/app", "baseUrl": "./", "module": "es2015", "types": [] }, "exclude": [ "test.ts", "**/*.spec.ts" ], "angularCompilerOptions": { "preserveWhitespaces": false } }
Angular-cli@1.4.5 an example where you can find the corresponding commit
There is also a function request in angular-cli repo.
yurzui
source share