2
0
Эх сурвалжийг харах

fix non-autofixable biome lint errors

Futa Arai 9 сар өмнө
parent
commit
bb302d3e15

+ 4 - 4
apps/pdf-converter/src/service/pdf-convert.ts

@@ -1,7 +1,7 @@
-import fs from 'fs';
-import path from 'path';
-import { Readable, Writable } from 'stream';
-import { pipeline as pipelinePromise } from 'stream/promises';
+import fs from 'node:fs';
+import path from 'node:path';
+import { Readable, Writable } from 'node:stream';
+import { pipeline as pipelinePromise } from 'node:stream/promises';
 
 import type { OnInit } from '@tsed/common';
 import { Service } from '@tsed/di';

+ 1 - 1
apps/pdf-converter/tsconfig.build.json

@@ -1,7 +1,7 @@
 {
   "extends": "./tsconfig.json",
   "compilerOptions": {
-    "noEmit": false,
+    "noEmit": false
   },
   "exclude": ["node_modules", "dist", "test"]
 }