chore: enable eslint-import-resolver-typescript (#10895)

Let eslint understand tsconfig.json when importing modules, so we
can use `compilerOption.paths` to override where to find ts modules.
This commit is contained in:
Jesse Yang
2020-09-15 15:33:49 -07:00
committed by GitHub
parent c43992bec8
commit 4eeee4c2eb
5 changed files with 60 additions and 1 deletions

View File

@@ -65,6 +65,7 @@ export default class TextAreaControl extends React.Component {
this.onAceChange(value);
}, 300);
}
onControlChange(event) {
this.props.onChange(event.target.value);
}