mirror of
https://github.com/zadam/trilium.git
synced 2025-11-09 14:55:50 +01:00
server-esm: Change simple local import statements
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
import WebSocket = require('ws');
|
||||
import utils = require('./utils');
|
||||
import log = require('./log');
|
||||
import sql = require('./sql');
|
||||
import cls = require('./cls');
|
||||
import config = require('./config');
|
||||
import syncMutexService = require('./sync_mutex');
|
||||
import protectedSessionService = require('./protected_session');
|
||||
import becca = require('../becca/becca');
|
||||
import AbstractBeccaEntity = require('../becca/entities/abstract_becca_entity');
|
||||
import utils from "./utils.js";
|
||||
import log from "./log.js";
|
||||
import sql from "./sql.js";
|
||||
import cls from "./cls.js";
|
||||
import config from "./config.js";
|
||||
import syncMutexService from "./sync_mutex.js";
|
||||
import protectedSessionService from "./protected_session.js";
|
||||
import becca from "../becca/becca.js";
|
||||
import AbstractBeccaEntity from "../becca/entities/abstract_becca_entity.js";
|
||||
|
||||
import env = require('./env');
|
||||
import env from "./env.js";
|
||||
import { IncomingMessage, Server } from 'http';
|
||||
import { EntityChange } from './entity_changes_interface';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user