From d122bec3c7a930c315aef7a9302f2a4378f4d860 Mon Sep 17 00:00:00 2001 From: izure <=> Date: Fri, 9 Jul 2021 16:48:37 +0900 Subject: [PATCH] add transpileOnly option in palette build for fast build --- src/Template/Project/WEBPACK.GEN.CONFIG.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Template/Project/WEBPACK.GEN.CONFIG.txt b/src/Template/Project/WEBPACK.GEN.CONFIG.txt index 8892d0e..b8f5be9 100644 --- a/src/Template/Project/WEBPACK.GEN.CONFIG.txt +++ b/src/Template/Project/WEBPACK.GEN.CONFIG.txt @@ -26,7 +26,10 @@ module.exports = { exclude: path.resolve(__dirname, 'node_modules'), use: [ { - loader: 'ts-loader' + loader: 'ts-loader', + options: { + transpileOnly: true + } } ] }