mirror of
https://github.com/langgenius/dify.git
synced 2026-04-05 16:36:28 +08:00
39 lines
813 B
JSON
39 lines
813 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2022",
|
|
"jsx": "react-jsx",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"es2022"
|
|
],
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"moduleDetection": "force",
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
"skipLibCheck": true,
|
|
"types": [
|
|
"node",
|
|
"vitest/globals",
|
|
"@testing-library/jest-dom"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.js",
|
|
"scripts/**/*.mjs",
|
|
"vite.config.ts",
|
|
"vitest.setup.ts"
|
|
]
|
|
}
|