```gts class MyComponent extends Component { private bar = 10; private get foo(): number { this.bar = 20; return 1; } } ``` This leads (correctly) to an `ember/no-side-effects` warning in `.ts` files but it doesn't in `.gts`.
This leads (correctly) to an
ember/no-side-effectswarning in.tsfiles but it doesn't in.gts.