This commit is contained in:
Matt 2025-02-03 14:16:58 +03:00 committed by GitHub
commit fcfde459f3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View file

@ -45,6 +45,7 @@
] ]
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^20.14.11",
"@typescript-eslint/parser": "^7.15.0", "@typescript-eslint/parser": "^7.15.0",
"eslint": "^8.56.0", "eslint": "^8.56.0",
"eslint-plugin-n8n-nodes-base": "^1.16.1", "eslint-plugin-n8n-nodes-base": "^1.16.1",

View file

@ -1,10 +1,10 @@
{ {
"compilerOptions": { "compilerOptions": {
"strict": true, "strict": true,
"module": "commonjs", "module": "preserve",
"moduleResolution": "node",
"target": "es2019", "target": "es2019",
"lib": ["es2019", "es2020", "es2022.error"], "lib": ["es2019", "es2020", "es2022.error"],
"types": ["node"],
"removeComments": true, "removeComments": true,
"useUnknownInCatchVariables": false, "useUnknownInCatchVariables": false,
"forceConsistentCasingInFileNames": true, "forceConsistentCasingInFileNames": true,