Skip to content

Commit ffc1350

Browse files
committed
chore: lint all TypeScript files
1 parent 5111e28 commit ffc1350

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tsup.config.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1+
/* eslint-disable import/no-extraneous-dependencies -- This file is only used during build-time, so this is fine. */
12
import { defineConfig } from 'tsup'
23

34
export default defineConfig({
45
splitting: false,
56
sourcemap: false,
67
minify: true,
78
clean: true,
8-
entryPoints: [
9-
'src/index.ts'
10-
],
9+
entryPoints: ['src/index.ts'],
1110
})

0 commit comments

Comments
 (0)