Skip to content

Commit

Permalink
Fix lint error when running compile-server (#7969)
Browse files Browse the repository at this point in the history
  • Loading branch information
somebody1234 authored Oct 4, 2023
1 parent 7e7b0f8 commit 0228022
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/gui2/shared/languageServerTypes/suggestions.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Uuid } from '../languageServerTypes'
import type { Uuid } from 'shared/languageServerTypes'

export type SuggestionId = number

Expand Down
1 change: 1 addition & 0 deletions app/gui2/tsconfig.server.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"extends": "@tsconfig/node18/tsconfig.json",
"include": ["ydoc-server/**/*", "shared/**/*"],
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"moduleResolution": "Bundler",
"outDir": "../../node_modules/.cache/tsc",
Expand Down
2 changes: 0 additions & 2 deletions app/ide-desktop/lib/client/src/bin/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,6 @@ export class Server {
}
// Prepare the YDoc server access point for the new Vue-based GUI.
if (httpServer) {
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access,
// @typescript-eslint/no-unsafe-call
ydocServer.createGatewayServer(httpServer)
}
logger.log(`Server started on port ${this.config.port}.`)
Expand Down

0 comments on commit 0228022

Please sign in to comment.