mirror of
https://github.com/langgenius/dify.git
synced 2026-04-05 16:36:28 +08:00
22 lines
379 B
JSON
22 lines
379 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"noEmit": false,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src"
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.js"
|
|
],
|
|
"exclude": [
|
|
"src/**/*.stories.tsx",
|
|
"src/**/__tests__/**"
|
|
]
|
|
}
|