mirror of
https://github.com/go-gitea/gitea.git
synced 2025-09-23 10:34:06 -04:00
- `type-fest` is replaced by our own types - `@stylistic/eslint-plugin-js` is no longer in use, it was replaced with `@stylistic/eslint-plugin` - `@types/license-checker-webpack-plugin` does not apply to our forked version and has a type stub
10 lines
290 B
TypeScript
10 lines
290 B
TypeScript
import type {Config} from 'updates';
|
|
|
|
export default {
|
|
exclude: [
|
|
'@mcaptcha/vanilla-glue', // breaking changes in rc versions need to be handled
|
|
'cropperjs', // need to migrate to v2 but v2 is not compatible with v1
|
|
'tailwindcss', // need to migrate
|
|
],
|
|
} satisfies Config;
|