I recently set up a Vue project using Webpack and typescript, but I ran into some errors when trying to add a <template>
element in my .vue file along with a <style>
element that caused issues with my webpack watcher displaying errors.
Below is the error message I received: https://i.sstatic.net/bEm0E.png
Here is an excerpt from my webpack.config.js file :
var path = require('path')
var webpack = require('webpack')
module.exports = {
// Webpack configuration settings
}