refactor: 在多个文件中添加process导入并调整tsconfig顺序

统一添加node:process导入以提高代码一致性
调整tsconfig.json中配置项的顺序以提升可读性
This commit is contained in:
feige996
2025-06-21 17:03:45 +08:00
parent c355f6e8f1
commit 32cf872405
5 changed files with 6 additions and 2 deletions

View File

@@ -2,6 +2,7 @@
import type { Plugin } from 'vite'
import fs from 'node:fs/promises'
import path from 'node:path'
import process from 'node:process'
function updatePackageJson(): Plugin {
return {