New flag `--inlineConsts` Input: ``` ts const x = 'hello'; console.log(x); ``` Output: ``` ts console.log('hello'); ``` See also #6678 + #6804 TBD: It's not clear you would want longer strings to inline into their use sites. Discuss.