In WebStorm I want to define a template like this:
<template src="./${FILE_NAME}.tmpl">
</template>
<script src="./${FILE_NAME}.js">
</script>
<style scoped src="./${FILE_NAME}.css">
</style>
And I want get the filename without extension.
And my question is can I do some string operations to the variable ${FILE_NAME}
and HOW, or does it exited a variable like ${FILE_NAME_WITHOUT_EXTENSION}
that I can use.