Skip to content

Commit

Permalink
just copy protocol.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
ledyba committed Apr 29, 2022
1 parent 9eed33b commit 4b12ac1
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
},
"dependencies": {
"gl-matrix": "^3.4.3",
"lib": "file:../lib",
"twemoji": "^14.0.2"
}
}
2 changes: 1 addition & 1 deletion client/src/omote/layers/Index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Moment from '../actors/Moment';
import { mat4 } from 'gl-matrix';
import Page from './Page';
import twemoji from 'twemoji';
import * as protocol from 'lib/protocol';
import * as protocol from '../../protocol';

export default class Index extends Layer {
private readonly wheelEventListener_: (ev: WheelEvent) => void;
Expand Down
1 change: 1 addition & 0 deletions client/src/protocol.ts
2 changes: 1 addition & 1 deletion client/src/ura/editor/Editor.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Preview from './Preview';
import * as protocol from 'lib/protocol';
import * as protocol from '../../protocol';

export default class Editor {
private readonly title_: HTMLInputElement;
Expand Down
2 changes: 1 addition & 1 deletion client/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

/* Basic Options */
// "incremental": true, /* Enable incremental compilation */
"target": "ESNext", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', 'ES2021', or 'ESNEXT'. */
"target": "ES2022", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', 'ES2021', or 'ESNEXT'. */
"module": "CommonJS", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */
"lib": ["ESNext", "DOM", "DOM.Iterable"], /* Specify library files to be included in the compilation. */
// "allowJs": true, /* Allow javascript files to be compiled. */
Expand Down

0 comments on commit 4b12ac1

Please sign in to comment.