Add generated header to ignore sonarcloud for compiled TS (#896)

This commit is contained in:
Leendert de Borst
2025-06-05 09:31:57 +02:00
committed by Leendert de Borst
parent 538675f391
commit ce9b37d299
6 changed files with 22 additions and 2 deletions

View File

@@ -1,3 +1,6 @@
// <auto-generated>
// This file was automatically generated. Do not edit manually.
"use strict";
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;

View File

@@ -1,3 +1,7 @@
// <auto-generated>
// This file was automatically generated. Do not edit manually.
// src/utils/UsernameEmailGenerator.ts
var _UsernameEmailGenerator = class _UsernameEmailGenerator {
constructor() {

View File

@@ -1,3 +1,6 @@
// <auto-generated>
// This file was automatically generated. Do not edit manually.
"use strict";
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;

View File

@@ -1,3 +1,7 @@
// <auto-generated>
// This file was automatically generated. Do not edit manually.
// src/utils/PasswordGenerator.ts
var PasswordGenerator = class {
/**

View File

@@ -8,5 +8,8 @@ export default defineConfig({
clean: true,
splitting: false,
minify: false,
sourcemap: true
sourcemap: true,
banner: {
js: '// <auto-generated>\n// This file was automatically generated. Do not edit manually.\n',
}
});

View File

@@ -8,5 +8,8 @@ export default defineConfig({
clean: true,
splitting: false,
minify: false,
sourcemap: true
sourcemap: true,
banner: {
js: '// <auto-generated>\n// This file was automatically generated. Do not edit manually.\n',
}
});