web: Type Tidy (#14647)

* web: Update Sentry types.

* web: Update MDX types.

* web: Format. Remove unused script.

* web: Clean up test types.

* web: Fix label in dark mode.
This commit is contained in:
Teffen Ellis
2025-05-23 17:31:59 +02:00
committed by GitHub
parent f471ddfb29
commit 5fed8ca575
12 changed files with 2466 additions and 856 deletions

View File

@ -1,6 +1,16 @@
export default {
/**
* @file Web Test Runner configuration.
* @see https://modern-web.dev/docs/test-runner/cli-and-configuration/
*/
/**
* @type {import('@web/test-runner').TestRunnerConfig}
*/
const config = {
files: ["dist/**/*.spec.js"],
nodeResolve: {
exportConditions: ["browser", "production"],
},
};
export default config;