eslint changes;

This commit is contained in:
Lechner Julian - FrauJulian
2025-12-16 16:02:07 +01:00
parent b0dc3ba52b
commit 78bc4b4f24
3 changed files with 12 additions and 12 deletions
+4 -4
View File
@@ -5,7 +5,7 @@
version: 2 version: 2
updates: updates:
- package-ecosystem: "npm" # See documentation for possible values - package-ecosystem: 'npm' # See documentation for possible values
directory: "/" # Location of package manifests directory: '/' # Location of package manifests
schedule: schedule:
interval: "daily" interval: 'daily'
+2 -2
View File
@@ -1,4 +1,4 @@
{ {
"extends": "./tsconfig.json", "extends": "./tsconfig.json",
"include": ["src/**/*.ts"] "include": ["src/**/*.ts"]
} }
+6 -6
View File
@@ -1,10 +1,10 @@
import { defineConfig } from 'tsup'; import { defineConfig } from 'tsup';
export default defineConfig({ export default defineConfig({
format: ['cjs', 'esm'], format: ['cjs', 'esm'],
entry: ['./src/index.ts'], entry: ['./src/index.ts'],
dts: true, dts: true,
shims: true, shims: true,
skipNodeModulesBundle: true, skipNodeModulesBundle: true,
clean: true, clean: true,
}); });