return key.visible
}
- public static parseJsonSchemaFile<T extends JsonType>(
+ public static override parseJsonSchemaFile<T extends JsonType>(
relativePath: string,
moduleName?: string,
methodName?: string
import { OCPPServiceUtils } from '../OCPPServiceUtils.js'
export class OCPP20ServiceUtils extends OCPPServiceUtils {
- public static parseJsonSchemaFile<T extends JsonType>(
+ public static override parseJsonSchemaFile<T extends JsonType>(
relativePath: string,
moduleName?: string,
methodName?: string
return logPrefix(logMsg)
}
- public constructor (protected readonly uiServerConfiguration: UIServerConfiguration) {
+ public constructor (protected override readonly uiServerConfiguration: UIServerConfiguration) {
super(uiServerConfiguration)
}
return logPrefix(logMsg)
}
- public constructor (protected readonly uiServerConfiguration: UIServerConfiguration) {
+ public constructor (protected override readonly uiServerConfiguration: UIServerConfiguration) {
super(uiServerConfiguration)
this.webSocketServer = new WebSocketServer({
handleProtocols,
"verbatimModuleSyntax": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
- "forceConsistentCasingInFileNames": true
- }
+ "forceConsistentCasingInFileNames": true,
+ "noImplicitOverride": true
+ },
+ "include": ["*.ts", "src/**/*.ts", "tests/**/*.ts"]
}
"compilerOptions": {
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
+ "noImplicitOverride": true,
"sourceMap": true,
"composite": true,
"baseUrl": "./",