mirror of
https://github.com/langgenius/dify.git
synced 2026-04-17 03:16:33 +08:00
19 lines
395 B
JSON
19 lines
395 B
JSON
{
|
|
"extends": "@dify/tsconfig/node.json",
|
|
"compilerOptions": {
|
|
"lib": ["ES2023", "DOM"],
|
|
"allowJs": false,
|
|
"types": ["node", "@playwright/test", "@cucumber/cucumber"],
|
|
"verbatimModuleSyntax": true
|
|
},
|
|
"include": ["./**/*.ts"],
|
|
"exclude": [
|
|
"./node_modules",
|
|
"./playwright-report",
|
|
"./test-results",
|
|
"./.auth",
|
|
"./cucumber-report",
|
|
"./.logs"
|
|
]
|
|
}
|