From d22c3b0c257f5daf5b401988a35ab9ce981a2341 Mon Sep 17 00:00:00 2001 From: Kristóf Marussy Date: Fri, 12 Aug 2022 19:54:46 +0200 Subject: refactor(frontend): move from Webpack to Vite Also overhaulds the building and linting for frontend assets. --- subprojects/frontend/types/ImportMeta.d.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 subprojects/frontend/types/ImportMeta.d.ts (limited to 'subprojects/frontend/types/ImportMeta.d.ts') diff --git a/subprojects/frontend/types/ImportMeta.d.ts b/subprojects/frontend/types/ImportMeta.d.ts new file mode 100644 index 00000000..2008e268 --- /dev/null +++ b/subprojects/frontend/types/ImportMeta.d.ts @@ -0,0 +1,9 @@ +interface ImportMeta { + env: { + DEV: boolean; + MODE: string; + PROD: boolean; + VITE_PACKAGE_NAME: string; + VITE_PACKAGE_VERSION: string; + }; +} -- cgit v1.2.3-54-g00ecf