summaryrefslogtreecommitdiffstats
path: root/webpack.js
blob: 25c295596fa9e7daa2436b418aeea80ba460c01a (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
26
27
28
29
30
31
32
const { merge } = require('webpack-merge')
let webpackConfig = require('@nextcloud/webpack-vue-config')
const path = require('path')

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

webpackConfig = merge(webpackConfig, {
	resolve: {
		extensions: ['.ts'],
	},
})

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