https://github.com/angular/angular
Revision 8948c93024e178a766466365f27997d00c25bf32 authored by Paul Gschwendtner on 07 June 2021, 19:03:01 UTC, committed by Andrew Kushnir on 12 July 2021, 20:11:15 UTC
Adds the `override` keyword to the `platform-server` sources to ensure
compatibility with `noImplicitOverride`.

PR Close #42512
1 parent 48c9a0d
Raw File
Tip revision: 8948c93024e178a766466365f27997d00c25bf32 authored by Paul Gschwendtner on 07 June 2021, 19:03:01 UTC
refactor(platform-server): ensure compatibility with noImplicitOverride (#42512)
Tip revision: 8948c93
.gitignore
.DS_STORE

/dist/
/bazel-out
/integration/bazel/bazel-*
*.log
node_modules

# Include when developing application packages.
pubspec.lock
.c9
.idea/
.devcontainer/*
!.devcontainer/README.md
!.devcontainer/recommended-devcontainer.json
!.devcontainer/recommended-Dockerfile
.settings/
.vscode/launch.json
.vscode/settings.json
.vscode/tasks.json
*.swo
*.swp
modules/.settings
modules/.vscode
.vimrc
.nvimrc

# Don't check in secret files
*secret.js

# Ignore npm/yarn debug log
npm-debug.log
yarn-error.log

# build-analytics
.build-analytics

# rollup-test output
/modules/rollup-test/dist/

# User specific bazel settings
.bazelrc.user

# User specific ng-dev settings
.ng-dev.user*

.notes.md
baseline.json

# Ignore .history for the xyz.local-history VSCode extension
.history

# CLDR data
tools/gulp-tasks/cldr/cldr-data/

# Husky
.husky/_
back to top