My current goal is to create a code snippet for Visual Studio Code using TypeScript. The snippet I have so far mirrors a typed word in this format:
import { ${1:Name}Component } from './${1:name}.component';
When I type the word at place #1, it mirrors to place #2 like this:
import { MynameComponent } from './Myname.component';
Wondering if there is a way to modify the snippet so that the word at place #2 appears in lower case like this:
import { MynameComponent } from './myname.component';