From c3fcc1ae3d2f680a973e66c138d9be7ae22eee26 Mon Sep 17 00:00:00 2001 From: Kristóf Marussy Date: Sun, 9 Apr 2023 00:53:53 +0200 Subject: build: refactor frontend build * Always write ESLint output to a file in addition to the console to make the lintFrontend task cacheable in Gradle (according to the output file). * Make sure frontend task inputs are declared properly for caching. * Make sure Typescript type checking is incremental. * Do not use @tsconfig, because both Vite and SonarScanner have problems with extending tsconfig files from Yarn PnP modules. --- subprojects/frontend/tsconfig.json | 1 - 1 file changed, 1 deletion(-) (limited to 'subprojects/frontend/tsconfig.json') diff --git a/subprojects/frontend/tsconfig.json b/subprojects/frontend/tsconfig.json index 35abd789..35d0d164 100644 --- a/subprojects/frontend/tsconfig.json +++ b/subprojects/frontend/tsconfig.json @@ -2,7 +2,6 @@ "extends": "./tsconfig.base.json", "compilerOptions": { "jsx": "react-jsx", - "noEmit": true, "lib": ["DOM", "DOM.Iterable", "ES2022"], "types": ["vite/client", "vite-plugin-pwa/client"] }, -- cgit v1.2.3-54-g00ecf