react-native-typescript-transformer icon indicating copy to clipboard operation
react-native-typescript-transformer copied to clipboard

Decorator breaks HRM with error: Unable to delete property

Open ningacoding opened this issue 5 years ago • 0 comments

how to reproduce:

clone this repo https://github.com/dalcib/expo-ts-example

add class:

export function deco(target: Object, propertyKey: string | symbol) { console.log(target);console.log(propertyKey); }

In "/src/App.tsx" add a property with above decorator

image

ningacoding avatar Sep 02 '18 18:09 ningacoding