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
updates:
- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "daily"
- package-ecosystem: 'npm' # See documentation for possible values
directory: '/' # Location of package manifests
schedule:
interval: 'daily'
+2 -2
View File
@@ -1,4 +1,4 @@
{
"extends": "./tsconfig.json",
"include": ["src/**/*.ts"]
"extends": "./tsconfig.json",
"include": ["src/**/*.ts"]
}
+6 -6
View File
@@ -1,10 +1,10 @@
import { defineConfig } from 'tsup';
export default defineConfig({
format: ['cjs', 'esm'],
entry: ['./src/index.ts'],
dts: true,
shims: true,
skipNodeModulesBundle: true,
clean: true,
format: ['cjs', 'esm'],
entry: ['./src/index.ts'],
dts: true,
shims: true,
skipNodeModulesBundle: true,
clean: true,
});