build: remove TS related tooling and files

Signed-off-by: Grigorii Shartsev <grigorii.shartsev@nextcloud.com>
This commit is contained in:
Grigorii Shartsev
2023-03-13 15:52:53 +01:00
parent 4a5e43c495
commit 79d96e0470
5 changed files with 8 additions and 317 deletions

View File

@ -77,24 +77,6 @@ webpackConfig.module.rules.push({
use: { loader: 'worker-loader' },
})
// Add typescript rule
webpackConfig.module.rules.push({
test: /\.tsx?$/,
use: [
{
loader: 'babel-loader',
},
{
loader: 'ts-loader',
options: { appendTsSuffixTo: [/\.vue$/] },
},
],
exclude: /node_modules/,
})
// Add typescript extension resolver
webpackConfig.resolve.extensions.push('.tsx')
webpackConfig.cache = true
module.exports = webpackConfig