From d173fcdfa3ad6f6aee721c8553f25f4db38fa302 Mon Sep 17 00:00:00 2001 From: tobi <31960611+tsmethurst@users.noreply.github.com> Date: Thu, 5 Oct 2023 16:06:19 +0200 Subject: [chore] Convert some settings / admin panel JS to TypeScript (#2247) * initial conversion of STUFF to typescript * more stuff * update babel deps, include commonjs transform * update bundler & eslint configuration * eslint --fix * upgrade deps * update docs, build stuff, peripheral stuff --------- Co-authored-by: f0x --- web/source/index.js | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'web/source/index.js') diff --git a/web/source/index.js b/web/source/index.js index 9b9848783..dcdb701ee 100644 --- a/web/source/index.js +++ b/web/source/index.js @@ -17,8 +17,6 @@ along with this program. If not, see . */ -"use strict"; - const skulk = require("skulk"); const fs = require("fs"); const path = require("path"); @@ -70,10 +68,17 @@ skulk({ entryFile: "settings", outputFile: "settings.js", prodCfg: prodCfg, + plugin: [ + // Additional settings for TS are passed from tsconfig.json. + // See: https://github.com/TypeStrong/tsify#tsconfigjson + ["tsify"] + ], transform: [ + // tsify is called before babelify, so we're just babelifying + // commonjs here, no need for the typescript preset. ["babelify", { global: true, - ignore: [/node_modules\/(?!nanoid)/] + ignore: [/node_modules\/(?!nanoid)/], }] ], presets: [ -- cgit v1.2.3