🐛 Fix package (#6)

* sync with n8n

* Update package.json

remove format
This commit is contained in:
lublak 2022-01-17 18:21:18 +01:00 committed by GitHub
commit 9d4183364a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 44 additions and 14 deletions

View file

@ -1,7 +1,8 @@
{
"compilerOptions": {
"lib": [
"es2017"
"es2017",
"es2019.array"
],
"types": [
"node",
@ -13,6 +14,7 @@
"strictNullChecks": true,
"strict": true,
"preserveConstEnums": true,
"resolveJsonModule": true,
"declaration": true,
"outDir": "./dist/",
"target": "es2017",
@ -22,9 +24,10 @@
"credentials/**/*",
"src/**/*",
"nodes/**/*",
"nodes/**/*.json",
"test/**/*"
],
"exclude": [
"**/*.spec.ts"
]
}
}