Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert extend util to TypeScript #2928

Merged
merged 18 commits into from
Nov 8, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add .ts file extension to extend imports for typings
  • Loading branch information
dsevillamartin committed Oct 30, 2021
commit 8597ec0d61ddc3b0edb1b51f6beedfa606de19a5
2 changes: 1 addition & 1 deletion js/src/common/Application.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import mapRoutes from './utils/mapRoutes';
import RequestError from './utils/RequestError';
import ScrollListener from './utils/ScrollListener';
import liveHumanTimes from './utils/liveHumanTimes';
import { extend } from './extend';
import { extend } from './extend.ts';

import Forum from './models/Forum';
import User from './models/User';
Expand Down
2 changes: 1 addition & 1 deletion js/src/common/compat.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as extend from './extend';
import * as extend from './extend.ts';
import Session from './Session';
import Store from './Store';
import BasicEditorDriver from './utils/BasicEditorDriver';
Expand Down