Compare commits

..
1 Commits
Author SHA1 Message Date
SvenandClaude Fable 5 cc129b9c23 Build- und Tooling-Dateien aktualisiert (Vaadin-generierte Dateien, VSCode-Einstellungen)
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-20 17:06:42 +02:00
5 changed files with 194 additions and 191 deletions
+3
View File
@@ -0,0 +1,3 @@
{
"java.compile.nullAnalysis.mode": "disabled"
}
Binary file not shown.
+1 -1
View File
@@ -22,7 +22,7 @@
"noUnusedParameters": false, "noUnusedParameters": false,
"experimentalDecorators": true, "experimentalDecorators": true,
"useDefineForClassFields": false, "useDefineForClassFields": false,
"ignoreDeprecations": "6.0", "ignoreDeprecations": "5.0",
"baseUrl": "src/main/frontend", "baseUrl": "src/main/frontend",
"paths": { "paths": {
"@vaadin/flow-frontend": ["generated/jar-resources"], "@vaadin/flow-frontend": ["generated/jar-resources"],
+1 -1
View File
@@ -274,7 +274,7 @@ function statsExtracterPlugin(): PluginOption {
const frontendFiles: Record<string, string> = {}; const frontendFiles: Record<string, string> = {};
frontendFiles['index.html'] = createHash('sha256').update(customIndexData.replace(/\r\n/g, '\n'), 'utf8').digest('hex'); frontendFiles['index.html'] = createHash('sha256').update(customIndexData.replace(/\r\n/g, '\n'), 'utf8').digest('hex');
const projectFileExtensions = ['.js', '.js.map', '.ts', '.ts.map', '.tsx', '.tsx.map', '.css', '.css.map', '.']; const projectFileExtensions = ['.js', '.js.map', '.ts', '.ts.map', '.tsx', '.tsx.map', '.css', '.css.map'];
const isThemeComponentsResource = (id: string) => const isThemeComponentsResource = (id: string) =>
id.startsWith(themeOptions.frontendGeneratedFolder.replace(/\\/g, '/')) id.startsWith(themeOptions.frontendGeneratedFolder.replace(/\\/g, '/'))