summaryrefslogtreecommitdiffstats
path: root/webpack.js
blob: 73904ad79892f1e5ec4a8bf64674b5f85bb02730 (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