summaryrefslogtreecommitdiffstats
path: root/webpack.js
blob: 4bdb0d02d0843c9824dc16743232ac3fd1dd877b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
const webpackConfig = require('@nextcloud/webpack-vue-config')

// Add TS Loader for processing typescript in vue templates
webpackConfig.module.rules.push({
	test: /.ts$/,
	exclude: [/node_modules/],
	use: [
		{
			loader: 'ts-loader',
			options: {
				transpileOnly: true,
				appendTsSuffixTo: [
					'\\.vue$',
				],
			},
		},
	],
})

module.exports = webpackConfig