feat: eslint 적용 및 관련 코드 일괄 수정

This commit is contained in:
2026-01-05 15:46:47 +00:00
parent cb312f02b3
commit c965b1120f
387 changed files with 39808 additions and 38800 deletions
+9 -9
View File
@@ -1,17 +1,17 @@
import { defineConfig } from "tsdown";
import { defineConfig } from 'tsdown';
export default defineConfig({
workspace: {
include: ["packages/*", "app/*"],
exclude: ["**/*-frontend/**"]
include: ['packages/*', 'app/*'],
exclude: ['**/*-frontend/**'],
},
entry: "src/index.ts",
format: "es",
outDir: "dist",
entry: 'src/index.ts',
format: 'es',
outDir: 'dist',
dts: true,
sourcemap: true,
target: "node22",
platform: "node",
target: 'node22',
platform: 'node',
fixedExtension: false,
hash: false
hash: false,
});