mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-28 21:00:58 +03:00
chore: move configurations to package.json (#2613)
feat: refactor to have minimal config files
This commit is contained in:
@@ -1,2 +0,0 @@
|
|||||||
node_modules
|
|
||||||
dist
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
**/node_modules
|
|
||||||
**/dist
|
|
||||||
**/build
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
module.exports = {
|
|
||||||
printWidth: 140,
|
|
||||||
singleQuote: true,
|
|
||||||
jsxSingleQuote: true,
|
|
||||||
trailingComma: 'none',
|
|
||||||
tabWidth: 4,
|
|
||||||
semi: false,
|
|
||||||
endOfLine: 'auto'
|
|
||||||
}
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
module.exports = {
|
|
||||||
presets: [
|
|
||||||
'@babel/preset-typescript',
|
|
||||||
[
|
|
||||||
'@babel/preset-env',
|
|
||||||
{
|
|
||||||
targets: {
|
|
||||||
node: 'current'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -66,5 +66,33 @@
|
|||||||
"@qdrant/openapi-typescript-fetch": "1.2.1",
|
"@qdrant/openapi-typescript-fetch": "1.2.1",
|
||||||
"@google/generative-ai": "^0.7.0",
|
"@google/generative-ai": "^0.7.0",
|
||||||
"openai": "4.51.0"
|
"openai": "4.51.0"
|
||||||
|
},
|
||||||
|
"eslintIgnore": [
|
||||||
|
"**/dist",
|
||||||
|
"**/node_modules",
|
||||||
|
"**/build",
|
||||||
|
"**/package-lock.json"
|
||||||
|
],
|
||||||
|
"prettier": {
|
||||||
|
"printWidth": 140,
|
||||||
|
"singleQuote": true,
|
||||||
|
"jsxSingleQuote": true,
|
||||||
|
"trailingComma": "none",
|
||||||
|
"tabWidth": 4,
|
||||||
|
"semi": false,
|
||||||
|
"endOfLine": "auto"
|
||||||
|
},
|
||||||
|
"babel": {
|
||||||
|
"presets": [
|
||||||
|
"@babel/preset-typescript",
|
||||||
|
[
|
||||||
|
"@babel/preset-env",
|
||||||
|
{
|
||||||
|
"targets": {
|
||||||
|
"node": "current"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user