mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Animations styles weren't getting properly set on platform-server because of erroneous checks and absence of reflection of style property to attribute on the server. The fix corrects the check for platform and explicitly reflects the style property to the attribute. PR Close #24624
28 lines
710 B
JSON
28 lines
710 B
JSON
{
|
|
"extends": "../tsconfig-build.json",
|
|
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"rootDir": "../",
|
|
"paths": {
|
|
"@angular/animations": ["../../../dist/packages/animations"],
|
|
"@angular/core": ["../../../dist/packages/core"]
|
|
},
|
|
"outDir": "../../../dist/packages/animations"
|
|
},
|
|
|
|
"files": [
|
|
"public_api.ts",
|
|
"../../../node_modules/@types/node/index.d.ts",
|
|
"../../../node_modules/zone.js/dist/zone.js.d.ts",
|
|
"../../system.d.ts"
|
|
],
|
|
|
|
"angularCompilerOptions": {
|
|
"annotateForClosureCompiler": true,
|
|
"strictMetadataEmit": false,
|
|
"skipTemplateCodegen": true,
|
|
"flatModuleOutFile": "browser.js",
|
|
"flatModuleId": "@angular/animations/browser"
|
|
}
|
|
}
|