This commit upgrades TypeScript to the latest version 5.3 and introduces `verbatimModuleSyntax` in line with the official Vue guide recommendatinos (vuejs/docs#2592). By enforcing `import type` for type-only imports, this commit improves code clarity and supports tooling optimization, ensuring imports are only bundled when necessary for runtime. Changes: - Bump TypeScript to 5.3.3 across the project. - Adjust import statements to utilize `import type` where applicable, promoting cleaner and more efficient code.
83 lines
2.4 KiB
TypeScript
83 lines
2.4 KiB
TypeScript
import { resolve } from 'node:path';
|
|
import { mergeConfig, type UserConfig } from 'vite';
|
|
import { defineConfig, externalizeDepsPlugin } from 'electron-vite';
|
|
import { getAliases, getClientEnvironmentVariables } from './vite-config-helper';
|
|
import { createVueConfig } from './vite.config';
|
|
import distDirs from './dist-dirs.json' assert { type: 'json' };
|
|
|
|
const MAIN_ENTRY_FILE = resolvePathFromProjectRoot('src/presentation/electron/main/index.ts');
|
|
const PRELOAD_ENTRY_FILE = resolvePathFromProjectRoot('src/presentation/electron/preload/index.ts');
|
|
const WEB_INDEX_HTML_PATH = resolvePathFromProjectRoot('src/presentation/index.html');
|
|
const ELECTRON_DIST_SUBDIRECTORIES = {
|
|
main: resolveElectronDistSubdirectory('main'),
|
|
preload: resolveElectronDistSubdirectory('preload'),
|
|
renderer: resolveElectronDistSubdirectory('renderer'),
|
|
};
|
|
|
|
process.env.ELECTRON_ENTRY = resolve(ELECTRON_DIST_SUBDIRECTORIES.main, 'index.cjs');
|
|
|
|
export default defineConfig({
|
|
main: getSharedElectronConfig({
|
|
distDirSubfolder: ELECTRON_DIST_SUBDIRECTORIES.main,
|
|
entryFilePath: MAIN_ENTRY_FILE,
|
|
}),
|
|
preload: getSharedElectronConfig({
|
|
distDirSubfolder: ELECTRON_DIST_SUBDIRECTORIES.preload,
|
|
entryFilePath: PRELOAD_ENTRY_FILE,
|
|
}),
|
|
renderer: mergeConfig(
|
|
createVueConfig({
|
|
supportLegacyBrowsers: false,
|
|
}),
|
|
{
|
|
build: {
|
|
outDir: ELECTRON_DIST_SUBDIRECTORIES.renderer,
|
|
rollupOptions: {
|
|
input: {
|
|
index: WEB_INDEX_HTML_PATH,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
),
|
|
});
|
|
|
|
function getSharedElectronConfig(options: {
|
|
readonly distDirSubfolder: string;
|
|
readonly entryFilePath: string;
|
|
}): UserConfig {
|
|
return {
|
|
build: {
|
|
outDir: options.distDirSubfolder,
|
|
lib: {
|
|
entry: options.entryFilePath,
|
|
},
|
|
rollupOptions: {
|
|
output: {
|
|
// Mark: electron-esm-support
|
|
// This is needed so `type="module"` works
|
|
entryFileNames: '[name].cjs',
|
|
},
|
|
},
|
|
},
|
|
plugins: [externalizeDepsPlugin()],
|
|
define: {
|
|
...getClientEnvironmentVariables(),
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
...getAliases(),
|
|
},
|
|
},
|
|
};
|
|
}
|
|
|
|
function resolvePathFromProjectRoot(pathSegment: string): string {
|
|
return resolve(__dirname, pathSegment);
|
|
}
|
|
|
|
function resolveElectronDistSubdirectory(subDirectory: string): string {
|
|
const electronDistDir = resolvePathFromProjectRoot(distDirs.electronUnbundled);
|
|
return resolve(electronDistDir, subDirectory);
|
|
}
|