diff --git a/JS/edgechains/examples/.prettierrc b/JS/edgechains/examples/.prettierrc index dcb72794f..a20502b7f 100644 --- a/JS/edgechains/examples/.prettierrc +++ b/JS/edgechains/examples/.prettierrc @@ -1,4 +1,4 @@ { "singleQuote": true, "trailingComma": "all" -} \ No newline at end of file +} diff --git a/JS/edgechains/examples/ormconfig.json b/JS/edgechains/examples/ormconfig.json index 04267dd89..8f962d90a 100644 --- a/JS/edgechains/examples/ormconfig.json +++ b/JS/edgechains/examples/ormconfig.json @@ -1,12 +1,11 @@ { - "type": "postgres", - "host": "db.rmzqtepwnzoxgkkzjctt.supabase.co", - "port": 5432, - "username": "postgres", - "password": "xaX0MYcf1YiJlChK", - "database": "postgres", - "entities": ["dist/entities/**/*.js"], - "synchronize": false, - "logging": false - } - \ No newline at end of file + "type": "postgres", + "host": "db.rmzqtepwnzoxgkkzjctt.supabase.co", + "port": 5432, + "username": "postgres", + "password": "xaX0MYcf1YiJlChK", + "database": "postgres", + "entities": ["dist/entities/**/*.js"], + "synchronize": false, + "logging": false +} diff --git a/JS/edgechains/examples/typings/index.d.ts b/JS/edgechains/examples/typings/index.d.ts index bc7993456..8c204ba2b 100644 --- a/JS/edgechains/examples/typings/index.d.ts +++ b/JS/edgechains/examples/typings/index.d.ts @@ -1,28 +1,28 @@ -export type EmptyObject = Record; - -export interface AppConfig { - app: { - name: string; - version: string; - }; - auth0: { - audience: string; - issuer: string; - clientId: string; - clientSecret: string; - }; - db: { - host: string; - port: number; - username: string; - password: string; - database: string; - }; - frontend: { - url: string; - }; - server: { - address: string; - port: number; - }; -} +export type EmptyObject = Record; + +export interface AppConfig { + app: { + name: string; + version: string; + }; + auth0: { + audience: string; + issuer: string; + clientId: string; + clientSecret: string; + }; + db: { + host: string; + port: number; + username: string; + password: string; + database: string; + }; + frontend: { + url: string; + }; + server: { + address: string; + port: number; + }; +}