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/grammar.d.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 subprojects/frontend/types/grammar.d.ts (limited to 'subprojects/frontend/types/grammar.d.ts') diff --git a/subprojects/frontend/types/grammar.d.ts b/subprojects/frontend/types/grammar.d.ts new file mode 100644 index 00000000..1480085b --- /dev/null +++ b/subprojects/frontend/types/grammar.d.ts @@ -0,0 +1,5 @@ +declare module '*.grammar' { + import type { LRParser } from '@lezer/lr'; + + export const parser: LRParser; +} -- cgit v1.2.3-54-g00ecf