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

webpackConfig.entry['admin-settings'] = path.join(
	__dirname,
	'src',
	'main-admin.js',
)

// 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