Просмотр исходного кода

fix non-autofixable biome lint errors

Futa Arai 9 месяцев назад
Родитель
Сommit
bb302d3e15
2 измененных файлов с 5 добавлено и 5 удалено
  1. 4 4
      apps/pdf-converter/src/service/pdf-convert.ts
  2. 1 1
      apps/pdf-converter/tsconfig.build.json

+ 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 type { OnInit } from '@tsed/common';
 import { Service } from '@tsed/di';
 import { Service } from '@tsed/di';

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

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