From ae5a4f0051316ed84bdca1de68e0e0c5e970650f Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Wed, 18 Aug 2021 18:22:24 +0200 Subject: [PATCH] start doc with additional steps for migration once the base migration is done --- doc/TS-MIGRATION.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 doc/TS-MIGRATION.md diff --git a/doc/TS-MIGRATION.md b/doc/TS-MIGRATION.md new file mode 100644 index 00000000..7cb5bb34 --- /dev/null +++ b/doc/TS-MIGRATION.md @@ -0,0 +1,7 @@ +# Typescript migration + +## Introduce `abstract` & `override` + + - find all methods and getters that throw or are empty in base classes and turn into abstract method or if all methods are abstract, into an interface. + - change child impls to not call super.method and to add override + - don't allow implicit override in ts config