mirror of
https://github.com/langgenius/dify.git
synced 2026-04-05 06:09:24 +08:00
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: yyh <yuanyouhuilyz@gmail.com>
16 lines
281 B
JavaScript
16 lines
281 B
JavaScript
import { defineConfig } from 'taze'
|
|
|
|
export default defineConfig({
|
|
exclude: [
|
|
// We are going to replace these
|
|
'react-syntax-highlighter',
|
|
'react-window',
|
|
'@types/react-window',
|
|
|
|
// We can not upgrade these yet
|
|
'typescript',
|
|
],
|
|
|
|
maturityPeriod: 2,
|
|
})
|