server-esm: Change simple library import statements

This commit is contained in:
Elian Doran
2024-07-18 21:37:45 +03:00
parent 35d11cc0d2
commit 2750df04a3
61 changed files with 122 additions and 122 deletions

View File

@@ -8,9 +8,9 @@
* - as a fallback if the previous step fails, we'll use home dir
*/
import os = require('os');
import fs = require('fs');
import path = require('path');
import os from "os";
import fs from "fs";
import path from "path";
function getAppDataDir() {
let appDataDir = os.homedir(); // fallback if OS is not recognized