Format again

This commit is contained in:
Andras Schmelczer 2025-02-25 22:51:03 +00:00
commit 6999276af4
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
3 changed files with 9 additions and 24 deletions

View file

@ -6,12 +6,7 @@
"strict": true, "strict": true,
"moduleResolution": "bundler", "moduleResolution": "bundler",
"allowSyntheticDefaultImports": true, "allowSyntheticDefaultImports": true,
"lib": [ "lib": ["DOM", "ESNext"]
"DOM",
"ESNext"
]
}, },
"exclude": [ "exclude": ["./dist"]
"./dist" }
]
}

View file

@ -6,12 +6,7 @@
"strict": true, "strict": true,
"moduleResolution": "bundler", "moduleResolution": "bundler",
"allowSyntheticDefaultImports": true, "allowSyntheticDefaultImports": true,
"lib": [ "lib": ["DOM", "ESNext"]
"DOM",
"ESNext"
]
}, },
"exclude": [ "exclude": ["./dist"]
"./dist" }
]
}

View file

@ -5,13 +5,8 @@
"target": "ES2022", "target": "ES2022",
"module": "CommonJS", "module": "CommonJS",
"esModuleInterop": true, "esModuleInterop": true,
"lib": [ "lib": ["DOM", "ESNext"],
"DOM",
"ESNext"
],
"moduleResolution": "node" "moduleResolution": "node"
}, },
"exclude": [ "exclude": ["./dist"]
"./dist" }
]
}