mirror of
https://github.com/langgenius/dify.git
synced 2026-03-31 02:48:49 +08:00
26 lines
563 B
JSON
26 lines
563 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2023",
|
|
"lib": ["ES2023", "DOM"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"allowJs": false,
|
|
"resolveJsonModule": true,
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"types": ["node", "@playwright/test", "@cucumber/cucumber"],
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true
|
|
},
|
|
"include": ["./**/*.ts"],
|
|
"exclude": [
|
|
"./node_modules",
|
|
"./playwright-report",
|
|
"./test-results",
|
|
"./.auth",
|
|
"./cucumber-report",
|
|
"./.logs"
|
|
]
|
|
}
|