diff options
author | 2023-10-05 16:06:19 +0200 | |
---|---|---|
committer | 2023-10-05 16:06:19 +0200 | |
commit | d173fcdfa3ad6f6aee721c8553f25f4db38fa302 (patch) | |
tree | 722cdaf93e090edcf83769ae763731008daf5fd3 /web/source/index.js | |
parent | updates markdown parsing to reduce allocations in the same way as the plain t... (diff) | |
download | gotosocial-d173fcdfa3ad6f6aee721c8553f25f4db38fa302.tar.xz |
[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 <f0x@cthu.lu>
Diffstat (limited to 'web/source/index.js')
-rw-r--r-- | web/source/index.js | 11 |
1 files changed, 8 insertions, 3 deletions
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 <http://www.gnu.org/licenses/>. */ -"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: [ |