summaryrefslogtreecommitdiffstats
path: root/webpack.js
blob: 55e836ef572e5f941baa4562f18a8cd9ed696c50 (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
33
34
35
36
37
38
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.entry['cron-warning'] = path.join(
	__dirname,
	'src',
	'main-cron-warning.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