fix(plugins): Use explicit node: imports for native path and stream modules in ts/plugins.ts

This commit is contained in:
2025-11-20 13:38:53 +00:00
parent e147a077f3
commit 429375a643
4 changed files with 8129 additions and 3 deletions

View File

@@ -1,8 +1,8 @@
// plugins.ts
// node native
import * as path from 'path';
import * as stream from 'stream';
import * as path from 'node:path';
import * as stream from 'node:stream';
export { path, stream };